예제 #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;
 }
예제 #2
0
 protected function FetchTemplate($templateName)
 {
     return $this->email->FetchLocalized($templateName);
 }