Pop\Mail\Message::getHtml PHP 메소드

getHtml() 공개 메소드

Get HTML part of the message.
public getHtml ( ) : string
리턴 string
    public function getHtml()
    {
        return $this->html;
    }

Usage Example

예제 #1
0
파일: Mail.php 프로젝트: nicksagona/PopPHP
 /**
  * Get HTML part of the message.
  *
  * @return string
  */
 public function getHtml()
 {
     return $this->message->getHtml();
 }