使用 PHP 通过 IMAP 或 POP3 检索(仅未读)电子邮件
有没有办法使用 PHP 通过 POP3 或 IMAP 协议仅从第 3 方服务器(例如 hotmail)检索未读邮件?
Is there any way to retrieve only unread messages from a 3rd party server (e.g. hotmail) thru POP3 or IMAP protocol using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有一种方法可以满足您的要求。您需要使用 PHP 的 IMAP 扩展来处理电子邮件数据。以下是一些可以帮助您入门的链接:
基本教程:
http://davidwalsh.name/gmail -php-imap
来自 PHP.net 的 IMAP 扩展的官方描述:
https://www.php.net/manual/en/book.imap.php
希望有帮助!
Yes, there is a way to do what you're asking. You'll need to use PHP's IMAP extension to process the email data. Here are a couple of links that will get you started:
Basic tutorial:
http://davidwalsh.name/gmail-php-imap
Official description of the IMAP extension from PHP.net:
https://www.php.net/manual/en/book.imap.php
Hope that helps!