PHP code example of lilicbush / imap-to-yii2
1. Go to this page and download the library: Download lilicbush/imap-to-yii2 library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lilicbush / imap-to-yii2 example snippets
$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->move($folder);
//$message->delete();
}
$imap->close();