Ejemplo n.º 1
0
Archivo: Basic.php Proyecto: atk4/atk4
 public function render()
 {
     $this->template->set('body_parts', '');
     foreach ($this->elements as $el) {
         if ($el instanceof TMail_Part) {
             $this->template->appendHTML('body_parts', $el->render());
         }
     }
     $this->template->set('boundary', $this->boundary);
     $this->headers->set('boundary', $this->boundary)->setHTML($this->args);
 }