示例#1
0
文件: mailer.php 项目: bermi/akelos
 public function test_use_mail_helper()
 {
     $HelperMailer = new HelperMailer();
     $Mail = $HelperMailer->create('use_mail_helper', $this->recipient);
     $this->assertPattern('/  But soft!/', trim($Mail->body));
     $this->assertPattern("/east,\n  and Juliet/", trim($Mail->body));
 }
示例#2
0
 public function __construct()
 {
     self::$available = Option::get("MAIL_AVAILABLE");
 }