Skip to content

camohob/yii2-imap

Repository files navigation

Imap agent

Imap agent component for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist camohob/yii2-imap "*"

or add

"camohob/yii2-imap": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

$imap = new ImapAgent;
$imap->type = 'imap/ssl/novalidate-cert';
$imap->server = 'imap.mail.ru';
$imap->port = 993;
$imap->user = '[email protected]';
$imap->password = 'password';
        
foreach ($imap->messages as $message) {
     $message->delete();
}
 
$imap->close();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages