imap_mail_move、imap_mail_copy 不起作用
我正在使用 PHP 的 IMAP 功能来重定向邮件。我正在使用文档 imap_mail_move、imap_mail_copy 中给出的函数。但这不起作用,它返回 false。 我正在使用的,
$mbox = '{'.$server.':'.$port.'/'.$tls.'}'.$mailbox;
$stream = imap_open($mbox,$username,$password);
$forward_mail_id = "[email protected]";
$msglist = "1,2,3";
$copy_status = imap_mail_move($stream , $msglist, $forward_mail_id);
但函数返回 false。 我希望将我的网络服务器收件箱中的邮件转发到我的 Gmail ID。
I am using PHP's IMAP function to redirect mail. I am using the function given in the documentation imap_mail_move, imap_mail_copy. but this is not working, it returns false.
the that i am using,
$mbox = '{'.$server.':'.$port.'/'.$tls.'}'.$mailbox;
$stream = imap_open($mbox,$username,$password);
$forward_mail_id = "[email protected]";
$msglist = "1,2,3";
$copy_status = imap_mail_move($stream , $msglist, $forward_mail_id);
but function returns false.
I want the mail in my webservers INBOX to be forwarded to my gmail's ID.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 TLS 会话,请确保连接成功。
尝试
$msglist
当然应该由 UID 组成,而不是序列号。If you are using TLS sessions, make sure that the connection is successful.
Try
$msglist
then should consist of UIDs, not sequence numbers, of course.