它可能正在使用 IMAP 服务器INTERNALDATE
字段,该字段在服务器上创建消息时由服务器维护。
RFC 指出,对于APPEND
命令:
If a date-time is specified, the internal date SHOULD be set in
the resulting message; otherwise, the internal date of the
resulting message is set to the current date and time by default.
你有一个接口来提供一个时间戳来追加吗?
编辑:
是的,可以使用 imap_headerinfo:
$headerinfo = imap_headerinfo($source_imap, $message_number);
$internal_date=date('dMY H:i:s O',$headerinfo->udate);
imap_append ( $imap_stream , $mailbox , $message , $options , $internal_date);
我已经测试了您的解决方案并且它有效,iPhone 上的日期现在是正确的。