使用 PHP 和 pop3 检索电子邮件 - 您的技术是什么?
我可以看到一些可用的选项:
1) 使用 PEAR 的 POP3 类 --> 尝试了一下,遇到了一些奇怪的问题,比如 FF 在他们的示例代码中窒息而死!
2) 使用 PHPClasses (此处) --> 似乎是当时可行的选择,仍在研究中
3)编写我自己的或使用可用的片段之一
目标当前是 Gmail,但我希望它也适用于我的 ISP 邮件(不一定是相同的代码课程)。
你用什么? 指向工作片段的指针将不胜感激。
I can see some options available:
1) Use PEAR's POP3 class --> tried it, having some weird weird issues like FF choking to death on their sample code!!!
2) Use PHPClasses (here) --> seems to be the viable option at the time, still working on it
3) Write my own or use one of the snippets available
The target is currently Gmail, but I would like this to work on my ISP mail too (not necessarily same code of course).
What do you use? Pointers to working snippets would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚发现了 ezcomponents。 合作真的很愉快。
I've just discovered ezcomponents. Real nice to work with.
本机 PHP IMAP 函数支持 POP3 邮箱,并且可能比纯粹用 PHP 编写的任何函数都要快。 PHP 手册中通常有一些有用的注释和示例,例如在 imap_open 页面上。
The native PHP IMAP functions support POP3 mailboxes, and will probably be faster than anything written purely in PHP. There are generally some useful comments and examples in the PHP manual, for example on the imap_open page.
我使用 PHPClasses 版本。 对我来说效果很好 - 我一直在开发 AJAX 邮件客户端(个人项目,真正的学习练习)。 我还发现他们提供的示例代码非常好,因此您应该能够使用它进行一些操作。
I use the PHPClasses version. Works fine for me - I've been working on an AJAX mail client (personal project, learning exercise really). I also found that the sample code they provided was quite good so you should be able to get something working with it.