我正在创建一家小公司,并希望在我的客户注册我的服务以激活他们的帐户后向他们发送电子邮件。我目前正在使用 PHP 的 mail() 函数,但是我担心我的电子邮件会被垃圾邮件过滤器过滤掉。有没有更好的方法来解决这个问题?
$email = 'XZY Client Email address @ somedomain.com';
$emailSubject = "Welcome to XYZ Service!";
$to = $email;
$subject .= "".$emailSubject."";
$headers .= "From: no-reply@XYZService.com\r\n" .
"X-Mailer: php";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$message = "<html><body>";
$message .= "Welcome to XYZ Service! \n Activate your account by clicking the following link: link...";
mail($to, $subject, $message, $headers);
有没有办法对这些电子邮件进行身份验证,以便我的客户知道它们来自我的实际服务?先感谢您!