zalazdi / laravel-imap by zalazdi

Laravel 5 IMAP client.
12,614
48
10
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: 2024-04-25 03:02:33
Package Statistics
Total Downloads: 12,614
Monthly Downloads: 14
Daily Downloads: 1
Total Stars: 48
Total Watchers: 10
Total Forks: 28
Total Open Issues: 12

laravel-imap

Latest Version on Packagist Total Downloads Software License

Install

  1. In your terminal via composer:
composer require zalazdi/laravel-imap
  1. Add this provider to your config/app.php :
Zalazdi\LaravelImap\Providers\LaravelServiceProvider::class,
  1. Publish config file
php artisan vendor:publish --provider="Zalazdi\LaravelImap\Providers\LaravelServiceProvider"

then Define host, username, password, etc in your config/imap.php.

Usage

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());
}

Change log

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email zalazdi@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.