PHP library for IMAP email requests

There are many libraries for PHP that are great for sending emails. But what is the most reliable to request emails from an IMAP account? Especially emails with attached files.

+5
source share
4 answers

You cannot choose an infrastructure based on its IMAP capabilities, given that you should be able to load a powerful IMAP library along with any infrastructure. You can use the Horde IMAP driver , a powerful abstraction layer for the protocol.

+3
source

, , .

. PHP-imap POP3/IMAP/NNTP .

+1

Fetch - - PHP Imap. , PHP IMAP , - API, . Fetch . , IMAP-, imap_thread. Fetch server , , .

https://github.com/tedious/Fetch

PS: I do not own this project and have not contributed any code to it. I used it for some pilot projects, but never in a production environment.

+1
source

There is a built-in IMAP module that can be compiled into your copy of PHP. The output of phpinfo () should be something like --with-imap[=DIR]. If you have this, you can do everything you need with your existing PHP module.

0
source

All Articles