2017 © Pedro Peláez
 

library laravel-imap

Laravel IMAP client

image

webklex/laravel-imap

Laravel IMAP client

  • Wednesday, August 1, 2018
  • by webklex
  • Repository
  • 18 Watchers
  • 107 Stars
  • 29,510 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 53 Forks
  • 1 Open issues
  • 49 Versions
  • 35 % Grown

The README.md

IMAP Library for Laravel

Latest release on Packagist ![Latest prerelease on Packagist][ico-prerelease] Software License [Code quality][link-scrutinizer] Total Downloads Hits ![Discord][ico-discord] Snyk, (*1)

Description

Laravel IMAP is an easy way to integrate both the native php-imap module and an extended custom imap protocol into your Laravel app. This enables your app to not only respond to new emails but also allows it to read and parse existing mails and much more., (*2)

Official documentation: php-imap.com/frameworks/laravel, (*3)

Discord: discord.gg/jCcZWCSq, (*4)

Table of Contents

Documentations

Compatibility

Version PHP 5.6 PHP 7 PHP 8
v5.x / / X
v4.x / X X
v3.x / X /
v2.x X X /
v1.x X / /

Installation

This library requires the mbstring php module. Make sure to install or enable it if it isn't available., (*5)

sudo apt-get install php*-mbstring

Installation via composer:, (*6)

composer require webklex/laravel-imap

Additional information such as troubleshooting, legacy support and package publishing can be found here: php-imap.com/frameworks/laravel/installation, (*7)

Basic usage example

This is a basic example, which will echo out all Mails within all imap folders and will move every message into INBOX.read. Please be aware that this should not be tested in real life and is only meant to gives an impression on how things work., (*8)

/** @var \Webklex\PHPIMAP\Client $client */
$client = Webklex\IMAP\Facades\Client::account('default');

//Connect to the IMAP Server
$client->connect();

//Get all Mailboxes
/** @var \Webklex\PHPIMAP\Support\FolderCollection $folders */
$folders = $client->getFolders();

//Loop through every Mailbox
/** @var \Webklex\PHPIMAP\Folder $folder */
foreach($folders as $folder){

    //Get all Messages of the current Mailbox $folder
    /** @var \Webklex\PHPIMAP\Support\MessageCollection $messages */
    $messages = $folder->messages()->all()->get();

    /** @var \Webklex\PHPIMAP\Message $message */
    foreach($messages as $message){
        echo $message->getSubject().'<br />';
        echo 'Attachments: '.$message->getAttachments()->count().'<br />';
        echo $message->getHTMLBody();

        //Move the current Message to 'INBOX.read'
        if($message->move('INBOX.read') == true){
            echo 'Message has been moved';
        }else{
            echo 'Message could not be moved';
        }
    }
}

Sponsors

[elb-BIT][link-sponsor-elb-bit] Feline, (*9)

Known issues

Error Solution
Kerberos error: No credentials cache file found (try running kinit) (...) Uncomment "DISABLE_AUTHENTICATOR" inside and use the legacy-imap protocol config/imap.php

Support

If you encounter any problems or if you find a bug, please don't hesitate to create a new issue. However please be aware that it might take some time to get an answer., (*10)

Off topic, rude or abusive issues will be deleted without any notice., (*11)

If you need immediate or commercial support, feel free to send me a mail at github@webklex.com., (*12)

A little notice

If you write source code in your issue, please consider to format it correctly. This makes it so much nicer to read
and people are more likely to comment and help :), (*13)

```php, (*14)

echo 'your php code...';, (*15)

```, (*16)

will turn into:, (*17)

echo 'your php code...'; 

Features & pull requests

Everyone can contribute to this project. Every pull request will be considered but it can also happen to be declined.
To prevent unnecessary work, please consider to create a feature issue
first, if you're planning to do bigger changes. Of course you can also create a new feature issue if you're just wishing a feature ;), (*18)

Change log

Please see CHANGELOG for more information what has changed recently., (*19)

Security

If you discover any security related issues, please email github@webklex.com instead of using the issue tracker., (*20)

Credits

License

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

The Versions

01/08 2018

dev-master

9999999-dev https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

30/07 2018

1.2.5

1.2.5.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

26/07 2018

1.2.4

1.2.4.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

23/07 2018

1.2.3

1.2.3.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

22/07 2018

1.2.2

1.2.2.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

22/07 2018

1.2.1

1.2.1.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

22/07 2018

1.2.0

1.2.0.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

19/05 2018

1.1.2

1.1.2.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

04/05 2018

1.1.1

1.1.1.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

24/04 2018

1.1.0

1.1.0.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

14/04 2018

1.0.5.9

1.0.5.9 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

08/04 2018

1.0.5.8

1.0.5.8 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

04/04 2018

1.0.5.7

1.0.5.7 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

03/04 2018

1.0.5.6

1.0.5.6 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

28/03 2018

1.0.5.5

1.0.5.5 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

27/03 2018

1.0.5.4

1.0.5.4 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

18/03 2018

1.0.5.3

1.0.5.3 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

18/03 2018

1.0.5.2

1.0.5.2 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

16/03 2018

1.0.5.1

1.0.5.1 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

16/03 2018

1.0.5.0

1.0.5.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

15/03 2018

1.0.4.2

1.0.4.2 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

14/02 2018

1.0.4.1

1.0.4.1 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

28/01 2018

1.0.4.0

1.0.4.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

01/01 2018

1.0.3.11

1.0.3.11 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

01/01 2018

1.0.3.10

1.0.3.10 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

03/12 2017

1.0.3.9

1.0.3.9 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

24/11 2017

1.0.3.8

1.0.3.8 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

05/11 2017

1.0.3.7

1.0.3.7 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

24/10 2017

1.0.3.6

1.0.3.6 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

18/10 2017

1.0.3.5

1.0.3.5 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

04/10 2017

1.0.3.4

1.0.3.4 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

22/09 2017

1.0.3.3

1.0.3.3 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

07/09 2017

1.0.3.2

1.0.3.2 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

05/09 2017

1.0.3.1

1.0.3.1 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

31/08 2017

1.0.3.0

1.0.3.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

27/08 2017

1.0.2.12

1.0.2.12 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

25/08 2017

1.0.2.11

1.0.2.11 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

11/08 2017

1.0.2.10

1.0.2.10 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

12/07 2017

1.0.2.9

1.0.2.9 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

25/06 2017

1.0.2.8

1.0.2.8 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

23/04 2017

1.0.2.7

1.0.2.7 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

19/04 2017

1.0.2.6

1.0.2.6 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

15/04 2017

1.0.2.5

1.0.2.5 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

23/03 2017

1.0.2.4

1.0.2.4 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

09/03 2017

1.0.2.3

1.0.2.3 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

19/02 2017

1.0.2.2

1.0.2.2 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

15/02 2017

1.0.2

1.0.2.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

19/01 2017

1.0.1

1.0.1.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap

19/01 2017

1.0.0

1.0.0.0 https://github.com/webklex/laravel-imap

Laravel IMAP client

  Sources   Download

MIT

The Requires

 

by Malte Goldenbaum

laravel mail imap webklex laravel-imap