我使用以下代码发送消息。当前时间是我手机,服务器和Mac上的9:20 PM。我执行此代码,然后通过手机接收并发送电子邮件。但是它说它在9点23分得到它。未来三分钟......这是怎么回事
$to = 'me@domain.org' . ', '; // note the comma
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Check-in Report <reports@fsbcheck.in>' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
答案 0 :(得分:2)
SMTP服务器报告发送时间戳(9:23)。无论您的外发邮件服务器在哪里,该机器上的系统时钟都需要调整。