setHtml() 공개 메소드

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