PHP Horde imap fetch with PEEK

100 Views Asked by At

Is it possible with Horde to FETCH with PEEK mode ? So the mail will be still unseen after I fetched it.

$fetchQuery =  new Horde_Imap_Client_Fetch_Query();
$fetchQuery->fullText();


/** @var Horde_Imap_Client_Fetch_Results $mail */
$results = $client->fetch('INBOX', $fetchQuery, ['ids' => new Horde_Imap_Client_Ids(11632)]);
1

There are 1 best solutions below

1
On

Set parameter 'peek' to true, and it makes horde to fetch mail in PEEK mode. Such way the fetching mail will not be flagged as seen.

$fetchQuery->fullText(['peek' => true]);