setText() 공개 메소드

Set text part of the message.
public setText ( string $text ) : Message
$text string
리턴 Message
예제 #1
0
파일: Mail.php 프로젝트: nicksagona/PopPHP
 /**
  * Set text part of the message.
  *
  * @param  string $text
  * @return \Pop\Mail\Mail
  */
 public function setText($text)
 {
     $this->message->setText($text);
     return $this;
 }