如何防止通过PHP mail()发送的邮件发送到垃圾邮件?我正在使用PHP的mail()函数发送电子邮件(sendmail进程正在运行)。但所有的邮件都会发送垃圾邮件(如果是gmail)。我尝试了很多我在网上找到的技巧,但没有一个工作,请告诉我任何确定的技巧。
3 回答
潇潇雨雨
TA贡献1833条经验 获得超4个赞
您必须添加针头:
示例代码:
$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!";
}
?>
- 3 回答
- 0 关注
- 607 浏览
添加回答
举报
0/150
提交
取消