1. Go to this page and download the library: Download stevebauman/php-imap 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/ */
/** @var \Webklex\PHPIMAP\Folder $folder */
$inbox = $client->getFolder('INBOX');
/** @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';
}
}
use Webklex\PHPIMAP\Message;
$client->getFolder('INBOX')->idle(function (Message $message) {
// Do something with the new message.
}, timeout: 60); // in seconds
xml
<php>
<env name="LIVE_MAILBOX" value="false"/>
</php>