imap icon indicating copy to clipboard operation
imap copied to clipboard

Detect new incoming messages

Open mitmelon opened this issue 3 years ago • 1 comments

Please can a method be included to detect new incoming messages only... I know cron will be used for this but i cant find a method that does it for the cron to run

mitmelon avatar Feb 04 '21 09:02 mitmelon

I finally found a way of doing this...

$search = new SearchExpression();
$search->addCondition(new Unseen());
$messages = $this->mailbox->getMessages($search);

No longer a new feature

Thanks...

mitmelon avatar Feb 04 '21 10:02 mitmelon