当我收到新电子邮件时如何运行 PHP 脚本?
我正在开发一个网络应用程序,如果用户在 GMail 中收到新电子邮件,该应用程序将向用户(包括发件人、主题和消息)发送电子邮件通知。我可以轻松地为通知模块编写代码,但我不知道如何查找和获取电子邮件。我在 x10hosting.com 上有一个免费托管帐户。我想在我的 x10hosting 帐户的邮件域中创建一个电子邮件地址,并将我的电子邮件转发到 x10hosting 的该地址。即使我转发它,我如何检测传入的电子邮件及其计数、主题、消息等,以及如何执行负责通知模块的 PHP 脚本。
I'm developing a web application which will send email notifications to users (including sender, subject, and message) if he gets new email in GMail. I can easily code for notification modules, but I don't know how to find and get emails. I'm having a free hosting account at x10hosting.com. I thought to create a email address in the mail domain of my x10hosting account and forward my emails to that address at x10hosting. Even if I forward it, how do I detect incoming emails and their counts, subject, message, etc. and how do I execute a PHP script which will take care of the notification module.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何启用 pop 或 imap 的 gmail 帐户并使用 PHP 进行测试。您不可能有一个能够自动识别的 php 网页 - 您需要一次又一次地执行脚本来轮询新邮件。
PHP 确实不是最好的解决方案。
How about enabling the gmail account for pop or imap and using PHP to test that. You cant have a php web page that will automatically know - you will need to execute the script again and again to poll for new mail.
PHP really isnt the best solution for this.