appendMessage() public method

Appends a message to the given folder.
public appendMessage ( string $folder, resource $msg ) : mixed
$folder string The folder to append the message(s) to.
$msg resource The message to append.
return mixed True or the UID of the new message in case the backend supports UIDPLUS.
コード例 #1
0
ファイル: Base.php プロジェクト: jubinpatel/horde
 /**
  * Appends a message to the given folder.
  *
  * @param string   $folder  The folder to append the message(s) to.
  * @param resource $msg     The message to append.
  *
  * @return mixed True or the UID of the new message in case the backend
  *               supports UIDPLUS.
  */
 public function appendMessage($folder, $msg)
 {
     return $this->_driver->appendMessage($folder, $msg);
 }