PHP mail client library

I know that there are many PHP mail libraries, but most of them are designed to send emails, is there any library that will help me receive emails from imap / pop3 accounts, handle attachments, etc.

I already use functions imap_*from the PHP IMAP extension, but using it is problematic since in most cases I have to reinvent the wheel (i.e., analyze the result imap_fetchstructureto access the attachments)

Mayby are there any ready-to-use lib builds on top imap_*or similar that will help me deal with extracting emails without rewriting all this logic for well-known problems?

+3
source share
2 answers

I missed the obvious Zend_Mailwill do the trick

+3
source

Here is the PHP Pop3 Client that I use for the script on my server.

http://www.phpclasses.org/package/2-PHP-Access-to-e-mail-mailboxes-using-the-POP3-protocol.html

You can easily use this to create a graphic layout, but I did not need it.

0
source

All Articles