Re: [PHP] POP3 Email

2002-11-07 Thread Marco Tabini
Hi Nick, You can actually use the imap extension to pick up POP3 mail (although, in my experience, it's pretty slow). There are also POP3 classes available... here's an example: http://www.thewebmasters.net/php/POP3.phtml Marco -- php|architect - The magazine for PHP Professional

Re: [PHP] POP3 Email

2002-11-07 Thread Marek Kilimajer
It the same, you only call imap_open("{server:110/pop3}INBOX", some function are available only to imap Nick Hird wrote: I have seen a few things where PHP can get IMAP email, but can PHP get POP3 email as well? I want to write a PHP application to get my POP3 email from my server. Can I do