如何防止通过 PHP mail() 发送的邮件成为垃圾邮件?
我正在使用PHP的mail()功能发送电子邮件(发送邮件进程正在运行)。但是所有的邮件都会成为垃圾邮件(在gmail的情况下)。我已经尝试了许多我在网上找到的技巧,但没有一个有效,请告诉我任何确定的技巧。
我正在使用PHP的mail()功能发送电子邮件(发送邮件进程正在运行)。但是所有的邮件都会成为垃圾邮件(在gmail的情况下)。我已经尝试了许多我在网上找到的技巧,但没有一个有效,请告诉我任何确定的技巧。
您必须添加针头:
示例代码 :
$headers = "From: myplace@example.com\r\n";
$headers .= "Reply-To: myplace2@example.com\r\n";
$headers .= "Return-Path: myplace@example.com\r\n";
$headers .= "CC: sombodyelse@example.com\r\n";
$headers .= "BCC: hidden@example.com\r\n";
if ( mail($to,$subject,$message,$headers) ) {
echo "The email has been sent!";
} else {
echo "The email has failed!";
}
?>