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)]);
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.