我是 PHP 的新手。我的目标是向在我的系统中注册的用户发送电子邮件。
这是我的代码:
$msg= " Hi $gen./$lName, copy and paste this code in order to activate
your account copy and paste this code:$num" ;
$email = "$emailadd";
$name= "GoodFaith Network Marketing Inc.";
$subject = "Account Activation";
$message = wordwrap($msg,70) ;
$sender = "cjoveric@myalphaedge.com";
$mail_header="From: ".$name."<". $sender. ">\r\n";
$sendmail=mail($email, $subject,$message, $mail_header );
我能够发送电子邮件,但我的问题是我想知道用户的电子邮件地址是否存在于 Yahoo、GMail 或其他邮件服务中。
有什么办法可以过滤掉无效的电子邮件?