我正在使用以下代码发送消息。我的手机、服务器和 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);