Exemplo n.º 1
0
 protected function FetchTemplate($templateName)
 {
     $header = $this->email->fetch('Email/emailheader.tpl');
     $body = $this->email->FetchLocalized($templateName);
     $footer = $this->email->fetch('Email/emailfooter.tpl');
     return $header . $body . $footer;
 }
Exemplo n.º 2
0
 protected function FetchTemplate($templateName)
 {
     return $this->email->FetchLocalized($templateName);
 }