--- /dev/null
+<?php
+/***************************************************************************
+ * Copyright (C) 2003-2006 Polytechnique.org *
+ * http://opensource.polytechnique.org/ *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the Free Software *
+ * Foundation, Inc., *
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
+ ***************************************************************************/
+
+require_once('smarty/libs/Smarty.class.php');
+
+// {{{ class PlMail
+
+/** Classe de mail avec corps en templates.
+ */
+class PlMail extends Smarty
+{
+ private $tpl;
+ private $mailer = null;
+
+ // {{{ constructor
+
+ function PlMail($mailer, $tpl)
+ {
+ global $globals;
+ $this->tpl = $tpl;
+ $this->mailer = $mailer;
+ $this->caching = false;
+ $this->compile_check = true;
+
+ $this->template_dir = $globals->spoolroot . "/templates/";
+ $this->compile_dir = $globals->spoolroot . "/spool/templates_c/";
+ $this->config_dir = $globals->spoolroot . "/configs/";
+
+ $this->register_outputfilter(Array($this, 'mail_format'));
+ $this->register_function('from', Array($this, 'setFrom'));
+ $this->register_function('to', Array($this, 'addTo'));
+ $this->register_function('cc', Array($this, 'addCc'));
+ $this->register_function('bcc', Array($this, 'addBcc'));
+ $this->register_function('subject', Array($this, 'setSubject'));
+ }
+
+ // }}}
+ // {{{ function run()
+
+ function run($html)
+ {
+ $this->assign('html_version', $html);
+ return $this->fetch($this->tpl);
+ }
+
+ // }}}
+ // {{{ function mail_format()
+
+ /** used to remove the empty lines due to {from ...}, {to ...} ... functions */
+ static function mail_format($output, &$smarty)
+ {
+ return wordwrap("\n".trim($output)."\n",75);
+ }
+
+ // }}}
+ // {{{ function format_addr()
+
+ static function format_addr(&$params)
+ {
+ if (isset($params['full'])) {
+ return $params['full'];
+ } elseif (empty($params['text'])) {
+ return $params['addr'];
+ } else {
+ return $params['text'].' <'.$params['addr'].'>';
+ }
+ }
+
+ // }}}
+ // {{{ function setFrom()
+
+ /** template function : from.
+ * {from full=...} for an already formatted address
+ * {from addr=... [text=...]} else
+ */
+ function setFrom($params, &$smarty)
+ {
+ $smarty->mailer->setFrom($this->format_addr($params));
+ }
+
+ // }}}
+ // {{{ function setTo()
+
+ /** template function : to.
+ * {to full=...} for an already formatted address
+ * {to addr=... [text=...]} else
+ */
+ function addTo($params, &$smarty)
+ {
+ $smarty->mailer->addTo($this->format_addr($params));
+ }
+
+ // }}}
+ // {{{ function setCc()
+
+ /** template function : cc.
+ * {cc full=...} for an already formatted address
+ * {cc addr=... [text=...]} else
+ */
+ function addCc($params, &$smarty)
+ {
+ $smarty->mailer->addCc($this->format_addr($params));
+ }
+
+ // }}}
+ // {{{ function setBcc()
+
+ /** template function : bcc.
+ * {bcc full=...} for an already formatted address
+ * {bcc addr=... [text=...]} else
+ */
+ function addBcc($params, &$smarty)
+ {
+ $smarty->mailer->addBcc($this->format_addr($params));
+ }
+
+ // }}}
+ // {{{ function setSubject()
+
+ /** template function : subject.
+ * {subject text=...}
+ */
+ function setSubject($params, &$smarty)
+ {
+ $smarty->mailer->setSubject($params['text']);
+ }
+
+ // }}}
+}
+// }}}
+
+
+require_once('Mail.php');
+require_once('Mail/mime.php');
+
+// {{{ class PlMailer
+/** Class for sending inline or multipart-emails.
+ */
+class PlMailer extends Mail_Mime {
+
+ private $mail;
+ private $page = null;
+ private $charset;
+ // {{{ constructor
+
+ function PlMailer($tpl = null, $charset = "ISO-8859-15")
+ {
+ $this->charset = $charset;
+ $this->Mail_Mime("\n");
+ $this->mail =& Mail::factory('sendmail', Array('sendmail_args' => '-oi'));
+ if (!is_null($tpl)) {
+ $this->page = new PlMail($this, $tpl);
+ }
+ }
+
+ // }}}
+ // {{{ function correct_emails()
+
+ /**
+ * converts all : Foo Bar Baz <quux@foobar.org> into "Foo Bar Baz" <quux@foobar.org> which is RFC compliant
+ */
+
+ private function correct_emails($email)
+ {
+ return preg_replace('!(^|, *)([^<"][^<"]*[^< "]) *(<[^>]*>)!', '\1"\2" \3', $email);
+ }
+
+ // }}}
+ // {{{ function addTo()
+
+ function addTo($email)
+ {
+ $email = $this->correct_emails($email);
+ if (isset($this->_headers['To'])) {
+ $this->_headers['To'] .= ", $email";
+ } else {
+ $this->_headers['To'] = $email;
+ }
+ }
+
+ // }}}
+ // {{{ function addCc()
+
+ function addCc($email)
+ {
+ return parent::addCc($this->correct_emails($email));
+ }
+
+ // }}}
+ // {{{ function addBcc()
+
+ function addBcc($email)
+ {
+ return parent::addBcc($this->correct_emails($email));
+ }
+
+ // }}}
+ // {{{ function setFrom()
+
+ function setFrom($email)
+ {
+ return parent::setFrom($this->correct_emails($email));
+ }
+
+ // }}}
+ // {{{ function addHeader()
+
+ function addHeader($hdr,$val)
+ {
+ switch($hdr) {
+ case 'From':
+ $this->setFrom($val);
+ break;
+
+ case 'To':
+ unset($this->_headers[$hdr]);
+ $this->addTo($val);
+ break;
+
+ case 'Cc':
+ unset($this->_headers[$hdr]);
+ $this->addCc($val);
+ break;
+
+ case 'Bcc':
+ unset($this->_headers[$hdr]);
+ $this->addBcc($val);
+ break;
+
+ default:
+ $this->headers(Array($hdr=>$val));
+ }
+ }
+
+ // }}}
+ // {{{ function assign()
+
+ function assign($var, $value)
+ {
+ if (!is_null($this->page)) {
+ $this->page->assign($var, $value);
+ }
+ }
+
+ // }}}
+ // {{{ function processPage()
+
+ private function processPage()
+ {
+ if (!is_null($this->page)) {
+ $this->setTxtBody($this->page->run(false));
+ $html = trim($this->page->run(true));
+ if (!empty($html)) {
+ $this->setHtmlBody($html);
+ }
+ }
+ }
+
+ // }}}
+ // {{{ function send()
+
+ function send()
+ {
+ $this->processPage();
+ if (S::v('forlife')) {
+ $this->addHeader('X-Org-Mail', S::v('forlife') . '@polytechnique.org');
+ }
+ $addrs = Array();
+ foreach(Array('To', 'Cc', 'Bcc') as $hdr) {
+ if(isset($this->_headers[$hdr])) {
+ require_once 'Mail/RFC822.php';
+ $addrs = array_merge($addrs, Mail_RFC822::parseAddressList($this->_headers[$hdr]));
+ }
+ }
+ 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,
+ 'html_charset' => $this->charset,
+ 'head_charset' => $this->charset));
+ $hdrs = $this->headers();
+ return $this->mail->send($dests, $hdrs, $body);
+ }
+
+ // }}}
+}
+
+// }}}
+
+?>