| Package Data | |
|---|---|
| Maintainer Username: | zalazdi |
| Maintainer Contact: | zalazdi@gmail.com (Krzysztof Graman) |
| Package Create Date: | 2015-08-21 |
| Package Last Update: | 2019-08-04 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 03:02:27 |
| Package Statistics | |
|---|---|
| Total Downloads: | 12,791 |
| Monthly Downloads: | 6 |
| Daily Downloads: | 0 |
| Total Stars: | 49 |
| Total Watchers: | 9 |
| Total Forks: | 23 |
| Total Open Issues: | 12 |
composer require zalazdi/laravel-imap
Zalazdi\LaravelImap\Providers\LaravelServiceProvider::class,
php artisan vendor:publish --provider="Zalazdi\LaravelImap\Providers\LaravelServiceProvider"
then Define host, username, password, etc in your config/imap.php.
Example usage:
use Zalazdi\LaravelImap\Client;
use Zalazdi\LaravelImap\Mailbox;
// ...
$client = new Client();
$client->connect();
$mailboxes = $client->getMailboxes();
foreach($mailboxes as $mailbox) {
dump($mailbox->getMessages());
}
Please see CHANGELOG for more information what has changed recently.
If you discover any security related issues, please email zalazdi@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.