如何使用 IMAP PHP 验证新电子邮件?
我找到了一种更好的方法: 通过 PHP 在循环中检查 Gmail IMAP 是否有新消息
我使用 Google 来管理我的电子邮件,并运行 Nginx + PHP。如果我想检查传入的邮件以与每个消息主题交互(以触发操作),据我所知,我只有两个选择:1)通过 IMAP PHP / cron 作业访问 Google 或 2)将消息转发到我的我可以在其中设置一个子域来将消息传送到 PHP 脚本。坦率地说,我更喜欢第一个选项,因为我已经测试并完成了所有 IMAP 功能。如果第二个解决方案确实是最好的,我更愿意使用 Postfix。然而,我希望来自已经浏览过这片未知水域的人的一些启发。谢谢。
I found out a better way to do this: Check Gmail IMAP via PHP for new mesages in a loop
I use Google to administer my e-mails and I run Nginx + PHP. If I want to check incoming mail to interact with each message subject (to trigger an action), as far as I know, I have only two options: 1) access Google via IMAP PHP / cron job or 2) forward the messages to my server where I can have a subdomain set to pipe the messages to a PHP script. Frankly, I'd preffer the first option because I have already all the IMAP functions tested and done. And if the second solution is really the best, I'd preffer to use Postfix. However, id like some light from somebody who has already browsed this unknown waters. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend Framework 有很好的 IMAP 支持。查看 Zend_Mail_Storage_Imap:
http://framework.zend.com/manual/en/zend.mail .read.html
Zend_Mail 中还有很多其他有用的东西。请记住,您可以只使用您需要的一个类。您不需要使用整个框架。
Zend Framework has pretty good IMAP support. Check out Zend_Mail_Storage_Imap:
http://framework.zend.com/manual/en/zend.mail.read.html
There are lots of other useful things in Zend_Mail. Remember, that you can use just the one class you need. You don't need to use the whole framework.