PHP code example of noi / imap-idle
1. Go to this page and download the library: Download noi/imap-idle 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/ */
noi / imap-idle example snippets
p = new \Noi\Util\Mail\ImapIdleClient('your.imap.host', 993);
$imap->login('username', 'password');
$imap->selectMailbox('INBOX');
while (!$imap->idle(300) instanceof \PEAR_Error) {
$mails = $imap->search('UNSEEN');
foreach ($imap->getMessages($mails) as $mail) {
echo '==== New Message ====', "\n";
echo $mail, "\n";
}
}
sh
$ php composer.phar install