setReadFlag() public method

Set the message's read status.
public setReadFlag ( string $mailbox, string $uid, integer $flag )
$mailbox string The mailbox name.
$uid string The message uid.
$flag integer Horde_ActiveSync_Message_Mail::FLAG_* constant
Example #1
0
 /**
  * Set the read (\seen) flag on the specified message.
  *
  * @param string $folderId  The folder id containing the message.
  * @param string $id        The message uid.
  * @param integer $flags    The value to set the flag to.
  *
  * @deprecated Will be removed in Horde 6. Here for BC with
  *             Horde_ActiveSync 2.4
  */
 public function setReadFlag($folderId, $id, $flags)
 {
     $this->_imap->setReadFlag($folderId, $id, $flags);
 }