qbilal / yii2-imap
yii2 extension to read and process mails from IMAP and PHP
dev-master
2019-08-06 12:30 UTC
Requires
- php: >=5.6.3
This package is auto-updated.
Last update: 2026-03-07 03:05:01 UTC
README
This library can be used to read mails from IMAP server using PHP and Yii2.
Installation by composer
{
"require": {
"qbilal/yii2-imap": "dev-master"
}
}
Or
$ composer require qbilal/yii2-imap "dev-master"
Config example
'imap' => [ 'class' => '', 'connection' => [ 'imapPath' => '', 'imapLogin' => '', 'imapPassword' => '', 'serverEncoding' => 'utf-8', 'searchEncoding' => 'US-ASCII',//MIME character set to use when searching strings. Not mandatory 'attachmentsDir' => '/tmp', 'decodeMimeStr' => false ] ]