コード例 #1
0
 public function testGetMapping()
 {
     $templater = new Templater();
     $html = $templater->getTemplate("envios", array("CONTENIDO" => "Hello Test"));
     echo $html;
     $this->assertNotNull($html);
 }
コード例 #2
0
ファイル: Mailer.php プロジェクト: MiguelSMendoza/Mailer
 public function sendTemplate($para, $nombrePara, $from, $nombreFrom, $asunto, $template = "generic", $params = array())
 {
     $templater = new Templater();
     $html = $templater->getTemplate($template, $params);
     $this->isHTML(true);
     return $this->send($para, $nombrePara, $from, $nombreFrom, $asunto, $html);
 }