Email class

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Email class

Post by alex.barylski »

I've used phpMailer with great success when required to send emails...

Now I want to start working on a contact manamgment program which will read emails (IMAP, etc) off the server, build contact lists, etc...

Does phpMailer support this? Or is it trivial using native PHP functions?

Thanks :)
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Post by josh »

PHP has an arsenal of functions specifically for this:
http://php.net/imap
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

Don't be fooled by the name "imap". Those functions support other protocols too (POP3). They don't take any learning neither, providing you have the documentation ;)
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

Post Reply