X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fplmailer.php;h=eb2620879c867574a8e0cd082589e8d88f60a1e6;hb=1879c7b22a1c881d6db01c867ca7853fbc49f35d;hp=15b9705426c4f1d8a40f201564651991d65cad42;hpb=7cbf5d4bde73e077c71205281bbd83bc5687d557;p=platal.git diff --git a/classes/plmailer.php b/classes/plmailer.php index 15b9705..eb26208 100644 --- a/classes/plmailer.php +++ b/classes/plmailer.php @@ -38,7 +38,7 @@ class PlMail extends Smarty $this->template_dir = $globals->spoolroot . "/templates/"; $this->compile_dir = $globals->spoolroot . "/spool/mails_c/"; $this->config_dir = $globals->spoolroot . "/configs/"; - + $this->register_outputfilter(Array($this, 'mail_format')); $this->register_function('from', Array($this, 'setFrom')); @@ -123,7 +123,7 @@ class PlMail extends Smarty } /** template function : subject. - * {subject text=...} + * {subject text=...} */ public function setSubject($params, &$smarty) { @@ -234,7 +234,7 @@ class PlMailer extends Mail_Mime { $this->page->assign($var, $value); } } - + public function assign_by_ref($var, &$value) { if (!is_null($this->page)) { @@ -248,7 +248,7 @@ class PlMailer extends Mail_Mime { $this->page->register_modifier($var, $callback); } } - + public function register_function($var, $callback) { if (!is_null($this->page)) { @@ -260,10 +260,9 @@ class PlMailer extends Mail_Mime { { $this->wiki = $wiki; } - + private function processPage($with_html = true) { - $level = error_reporting(0); if (!is_null($this->page)) { $level = error_reporting(0); $this->page->run('head'); // process page headers @@ -307,12 +306,12 @@ class PlMailer extends Mail_Mime { if(empty($addrs)) { return false; } - + $dests = Array(); foreach($addrs as $a) { $dests[] = "{$a->mailbox}@{$a->host}"; } - + // very important to do it in THIS order very precisely. $body = $this->get(array('text_charset' => $this->charset, 'text_encoding' => '8bit',