php-imap / php-imap
Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)
Requires
- php: ^8.2
- ext-fileinfo: *
- ext-iconv: *
- ext-imap: *
- ext-json: *
- ext-mbstring: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- maglnet/composer-require-checker: ^2.0|^3.2
- nikic/php-parser: ^4.3,<4.7|^4.10
- paragonie/hidden-string: ^1.0
- php-parallel-lint/php-parallel-lint: ^1.3
- phpunit/phpunit: ^8.5|^9.5
- povils/phpmnd: ^2.2
- psalm/plugin-phpunit: ^0.10.0|^0.15.1
- roave/security-advisories: dev-master
- sebastian/phpcpd: ^4.1|^6.0
Suggests
- ext-fileinfo: To facilitate IncomingMailAttachment::getFileInfo() auto-detection
- dev-master
- 6.x-dev
- 6.0.0
- 5.x-dev
- 5.1.0
- 5.0.1
- 5.0.0
- 4.x-dev
- 4.5.3
- 4.5.2
- 4.5.1
- 4.5.0
- 4.4.0
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.0
- 3.1.0
- 3.0.33
- 3.0.32
- 3.0.31
- 3.0.30
- 3.0.29
- 3.0.28
- 3.0.27
- 3.0.26
- 3.0.25
- 3.0.24
- 3.0.23
- 3.0.22
- 3.0.21
- 3.0.20
- 3.0.19
- 3.0.18
- 3.0.17
- 3.0.16
- 3.0.15
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.2.5
- 2.2.4
- 2.2.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0
- 1.1
- 1.0
- dev-Automatically-expose-all-custom-headers
- dev-Fix-boolean-received-error-in-getFileInfo-function
- dev-Fix-incorrect-IMAP-sequence-handling
- dev-Add-support-for-keep-original-attachment-filenames
- dev-Refactor-php-cs-fixer-config
- dev-Preserve-original-attachment-filenames
- dev-Deduplicate-and-fix-disposition-checks
- dev-Fix-flattenParts-for-PARTY_TYPE_TWO
- dev-Fix-broken-decodeStringFromUtf7ImapToUtf8-function
- dev-Issue-691-Add-missing-messageId-reference-headers
- dev-Issue-720-Fix-incorrect-SEEN-handling
- dev-Issue-730-Fix-wrong-German-Umlauts
- dev-Fix-implicit-nullability-deprecation
- dev-Issue-727-Add-note-regarding-ext-imap-on-PHP-8.4.x
- dev-Extend-Unit-Tests
- dev-revert-739-Update-PHP-support
- dev-Update-PHP-support
- dev-Issue-411-Implement-OAuth-Support
- dev-411-OAuth-Support
- dev-Improve-php-cs-fixer-config
This package is auto-updated.
Last update: 2026-05-10 18:58:50 UTC
README
Initially released in December 2012, the PHP IMAP Mailbox is a powerful and open source library to connect to a mailbox by POP3, IMAP and NNTP using the PHP IMAP extension (ext-imap). This library allows you to fetch emails from your email server. Extend the functionality or create powerful web applications to handle your incoming emails.
Features
- Connect to mailbox by POP3/IMAP/NNTP, using PHP IMAP extension
- Get emails with attachments and inline images
- Get emails filtered or sorted by custom criteria
- Mark emails as seen/unseen
- Delete emails
- Manage mailbox folders
Requirements
| PHP Version | php-imap Version | php-imap status |
|---|---|---|
| 5.6 | 3.x | End of life |
| 7.0 | 3.x | End of life |
| 7.1 | 3.x | End of life |
| 7.2 | 3.x, 4.x | End of life |
| 7.3 | 3.x, 4.x | End of life |
| 7.4 | >3.0.33, 4.x, 5.x | End of life |
| 8.0 | >3.0.33, 4.x, 5.x | End of life |
| 8.1 | >4.3.0, 5.x | End of life |
| 8.2 | 6.x | Active support |
| 8.3 | 6.x | Active support |
| 8.4 | 6.x | Active support |
| 8.5 | 6.x | Active support |
The next major release raises the minimum supported PHP version to PHP 8.2 and is tested on PHP 8.2 through PHP 8.5.
- PHP
fileinfo,iconv,mbstring, andjsonextensions must be present. - PHP
ext-imapmust be present. - On PHP
8.2and8.3, install or enable the IMAP extension provided by your PHP distribution. On Windows, this can still mean enablingextension=php_imap.dllinphp.ini. - On PHP
8.4and newer, install IMAP from PECL and enable it for your CLI and web SAPIs. - When building IMAP from source, you may also need
c-client, OpenSSL, and Kerberos development libraries. ext-imapis not thread-safe and should not be used with ZTS builds.
Installation by Composer
Before running composer require or composer install, make sure ext-imap is installed for the PHP version you are using.
Install the latest available release:
$ composer require php-imap/php-imap
Install the latest available and stable source code from master, which is may not released / tagged yet:
$ composer require php-imap/php-imap:dev-master
Run Tests
Before you can run any tests you need a working ext-imap installation and you may need to run composer install to install all development dependencies.
Run all tests
You can run all available tests by running the following command (inside of the installed php-imap directory): composer run tests
Run only PHPUnit tests
You can run all PHPUnit tests by running the following command (inside of the installed php-imap directory): php vendor/bin/phpunit --testdox
Integration with frameworks
- Symfony - https://github.com/secit-pl/imap-bundle
Getting Started Example
Below, you'll find an example code how you can use this library. For further information and other examples, you may take a look at the wiki.
By default, this library uses random filenames for attachments as identical file names from other emails would overwrite other attachments. If you want to keep the original file name, you can set the attachment filename mode to true. For backward compatibility, this still overwrites an existing file with the same name. If you want to keep the original file name and automatically suffix duplicates with (1), (2), and so on, set the attachment filename collision mode to PhpImap\Mailbox::ATTACHMENT_FILENAME_COLLISION_SUFFIX.
// Create PhpImap\Mailbox instance for all further actions $mailbox = new PhpImap\Mailbox( '{imap.gmail.com:993/imap/ssl}INBOX', // IMAP server and mailbox folder 'some@gmail.com', // Username for the before configured mailbox '*********', // Password for the before configured username __DIR__, // Directory, where attachments will be saved (optional) 'UTF-8', // Server encoding (optional) true, // Trim leading/ending whitespaces of IMAP path (optional) false // Attachment filename mode (optional; false = random filename; true = original filename) ); $mailbox->setAttachmentFilenameCollisionMode( PhpImap\Mailbox::ATTACHMENT_FILENAME_COLLISION_SUFFIX ); // set some connection arguments (if appropriate) $mailbox->setConnectionArgs( CL_EXPUNGE // expunge deleted mails upon mailbox close | OP_SECURE // don't do non-secure authentication ); // Some providers require OAuth instead of a password. // Obtain and refresh the access token outside of this library, then enable OAuth explicitly. // Your ext-imap build must expose OP_XOAUTH2 for this to work. $mailbox->enableOAuth($accessToken); try { // Get all emails (messages) // PHP.net imap_search criteria: http://php.net/manual/en/function.imap-search.php $mailsIds = $mailbox->searchMailbox('ALL'); } catch(PhpImap\Exceptions\ConnectionException $ex) { echo "IMAP connection failed: " . implode(",", $ex->getErrors('all')); die(); } // If $mailsIds is empty, no emails could be found if(!$mailsIds) { die('Mailbox is empty'); } // If you want to inspect a message without changing its seen state, // use getMail($id, false) or getRawMail($id, false). // Get the first message // If '__DIR__' was defined in the first line, it will automatically // save all attachments to the specified directory $mail = $mailbox->getMail($mailsIds[0]); // Show, if $mail has one or more attachments echo "\nMail has attachments? "; if($mail->hasAttachments()) { echo "Yes\n"; } else { echo "No\n"; } // Print all information of $mail print_r($mail); // Access arbitrary headers without adding custom properties to the library $originMessageId = $mail->getHeader('Origin-MessageID'); $receivedHeaders = $mail->getHeaders('Received'); // Print all attachements of $mail echo "\n\nAttachments:\n"; print_r($mail->getAttachments());
searchMailbox() delegates criteria evaluation to PHP's IMAP extension and the IMAP server behind it. This library includes a fallback for simple SEEN ... SINCE ... searches because some ext-imap / server combinations do not immediately return messages marked as seen earlier on the same day. More complex imap_search() behavior still depends on the underlying IMAP implementation.
Method imap() allows to call any PHP IMAP function in a context of the instance. Example:
// Call imap_check() - see http://php.net/manual/function.imap-check.php $info = $mailbox->imap('check'); // Show current time for the mailbox $currentServerTime = isset($info->Date) && $info->Date ? date('Y-m-d H:i:s', strtotime($info->Date)) : 'Unknown'; echo $currentServerTime;
Some request require much time and resources:
// If you don't need to grab attachments you can significantly increase performance of your application $mailbox->setAttachmentsIgnore(true); // get the list of folders/mailboxes $folders = $mailbox->getMailboxes('*'); // loop through mailboxs foreach($folders as $folder) { // switch to particular mailbox $mailbox->switchMailbox($folder['fullpath']); // search in particular mailbox $mails_ids[$folder['fullpath']] = $mailbox->searchMailbox('SINCE "1 Jan 2018" BEFORE "28 Jan 2018"'); } print_r($mails_ids);
Upgrading from 3.x
Prior to 3.1, Mailbox used a "magic" method (Mailbox::imap()), with the
class Imap now performing it's purpose to call many imap_* functions with
automated string encoding/decoding of arguments and return values:
Before:
public function checkMailbox() { return $this->imap('check'); }
After:
public function checkMailbox(): object { return Imap::check($this->getImapStream()); }
Recommended
- Google Chrome extension PHP Console
- Google Chrome extension JavaScript Errors Notifier