我有一个域www.ipsmeerut.com
,我使用下面的脚本发送邮件。它返回 true,但邮件未发送。
这是我的脚本:
<?php
$to = 'brajnacs@gmail.com';
$subject = 'Test';
$headers = "From: Test<no-reply@ipsmeerut.com>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\n";
$message = "<html><body>";
$message .= "<h1>Hello, World!</h1>";
$message .= "</body></html>";
$res=false;
$res=mail($to, $subject, $message, $headers);
var_dump($res);
echo "Mail sent to ".$to;
?>
该脚本在我的其他域上运行良好。var_dump
正在显示true
。我的邮件服务器是aspmx.l.google.com
,我也添加MX Entry
了它。