这是php mail()函数代码的简单使用:
<?php
$from = "From email goes here";
$to = "To email goes here";
ini_set("display_errors", "On");
ini_set("sendmail_from", $from);
ini_set("SMTP", "localhost");
ini_set("smtp_port", "25");
$subject = "Hello, This is subject";
$message = "<p style='color: green;font-weight: bold;'>Hello World, This is Body</p>";
$headers = 'MIME-Version: 1.0' . "\r\n";
//$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'Content-Type: text/html; Charset=UTF-8' . "\r\n";
$headers .= 'From: Birthday Reminder <' . $from . '>' . "\r\n";
$headers .= 'To: Mary <' . $to . '>' . "\r\n";
$headers .= 'Reply-To: Birthday Reminder <' . $from . '>' . "\r\n";
$headers .= 'X-Mailer: PHP/' . phpversion();
if(mail($to, $subject, $message,$headers))
{
echo("<p style='color: blue;font-weight: bold;'>Email Sent :D</p>");
}
else
{
echo("<p style='color: red;font-weight: bold;'>Email Message delivery failed...</p>");
}
?>
为什么使用这些代码发送电子邮件总是转到垃圾邮件文件夹?
标题的顺序是否正常?
我应该使用哪些额外的标题来防止垃圾邮件?
编辑:
我知道堆栈中有一些线程
但我正在寻找更新的答案
所以它不是重复。
答案 0 :(得分:1)
这不仅仅是关于你的脚本,你可以检查你的IP的声誉,你还应该设置SPF记录和DKIM密钥以获得帮助
此在线工具可帮助您正确设置邮件服务器
您可以检查您的IP的发件人核心,因为它可能会严重影响您邮件的发送