appendMessage() 공개 메소드

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.
리턴 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);
 }