getHtml() 공개 메소드

Get HTML part of the message.
public getHtml ( ) : string
리턴 string
예제 #1
0
 public function testSetAndGetHtml()
 {
     $m = new Mail();
     $m->setHtml('Hello World');
     $this->assertEquals('Hello World', $m->getHtml());
 }