Exemplo n.º 1
0
 public function testSetHtml()
 {
     $email = new Email();
     $html = "<p style = 'color:red;'>Sample HTML text</p>";
     $email->setHtml($html);
     $this->assertEquals($html, $email->getHtml());
 }