retrieve email using PHP and pop3 - what is your technique?

后端 未结 3 1975
北恋
北恋 2020-12-10 21:53

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)

相关标签:
3条回答
  • 2020-12-10 22:38

    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.

    0 讨论(0)
  • 2020-12-10 22:40

    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.

    0 讨论(0)
  • 2020-12-10 22:47

    I've just discovered ezcomponents. Real nice to work with.

    0 讨论(0)
提交回复
热议问题