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?
canni source
share