0

我正在使用以下代码发送消息。我的手机、服务器和 Mac 上的当前时间是晚上 9:20。我执行此代码,然后在手机上接收和发送电子邮件。但它说它是在 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);
4

1 回答 1

2

该时间戳 (9:23) 在 SMTP 服务器报告发送时设置。无论您的外发邮件服务器在哪里,该机器上的系统时钟都需要调整。

于 2012-09-28T01:28:18.303 回答