Convert source code to UTF-8
[platal.git] / classes / plmailer.php
CommitLineData
b98794ca 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
b98794ca 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22require_once('smarty/libs/Smarty.class.php');
23
b98794ca 24/** Classe de mail avec corps en templates.
25 */
26class PlMail extends Smarty
27{
28 private $tpl;
29 private $mailer = null;
30
b2192733 31 function __construct($tpl)
b98794ca 32 {
33 global $globals;
34 $this->tpl = $tpl;
b98794ca 35 $this->caching = false;
36 $this->compile_check = true;
37
38 $this->template_dir = $globals->spoolroot . "/templates/";
d635addc 39 $this->compile_dir = $globals->spoolroot . "/spool/mails_c/";
b98794ca 40 $this->config_dir = $globals->spoolroot . "/configs/";
98441260 41
b98794ca 42
43 $this->register_outputfilter(Array($this, 'mail_format'));
44 $this->register_function('from', Array($this, 'setFrom'));
45 $this->register_function('to', Array($this, 'addTo'));
46 $this->register_function('cc', Array($this, 'addCc'));
47 $this->register_function('bcc', Array($this, 'addBcc'));
48 $this->register_function('subject', Array($this, 'setSubject'));
11f44323 49 $this->register_function('add_header', Array($this, 'addHeader'));
b98794ca 50 }
51
b2192733 52 public static function &get(&$mailer, $tpl)
53 {
54 static $plmail;
55 if (!isset($plmail) || $plmail->tpl != $tpl) {
56 $plmail = new PlMail($tpl);
57 }
58 $plmail->mailer =& $mailer;
59 return $plmail;
60 }
61
5bc6e9e6 62 public function run($html)
b98794ca 63 {
64 $this->assign('html_version', $html);
a2446af5 65 $text = $this->fetch($this->tpl);
a2446af5 66 return $text;
b98794ca 67 }
68
b98794ca 69 /** used to remove the empty lines due to {from ...}, {to ...} ... functions */
5bc6e9e6 70 static public function mail_format($output, &$smarty)
b98794ca 71 {
72 return wordwrap("\n".trim($output)."\n",75);
73 }
74
5bc6e9e6 75 static protected function format_addr(&$params)
b98794ca 76 {
77 if (isset($params['full'])) {
78 return $params['full'];
79 } elseif (empty($params['text'])) {
80 return $params['addr'];
81 } else {
82 return $params['text'].' <'.$params['addr'].'>';
83 }
84 }
85
b98794ca 86 /** template function : from.
87 * {from full=...} for an already formatted address
88 * {from addr=... [text=...]} else
89 */
5bc6e9e6 90 public function setFrom($params, &$smarty)
b98794ca 91 {
5bc6e9e6 92 $smarty->mailer->setFrom(PlMail::format_addr($params));
b98794ca 93 }
94
b98794ca 95 /** template function : to.
96 * {to full=...} for an already formatted address
97 * {to addr=... [text=...]} else
98 */
5bc6e9e6 99 public function addTo($params, &$smarty)
b98794ca 100 {
5bc6e9e6 101 $smarty->mailer->addTo(PlMail::format_addr($params));
b98794ca 102 }
103
b98794ca 104 /** template function : cc.
105 * {cc full=...} for an already formatted address
106 * {cc addr=... [text=...]} else
107 */
5bc6e9e6 108 public function addCc($params, &$smarty)
b98794ca 109 {
5bc6e9e6 110 $smarty->mailer->addCc(PlMail::format_addr($params));
b98794ca 111 }
112
b98794ca 113 /** template function : bcc.
114 * {bcc full=...} for an already formatted address
115 * {bcc addr=... [text=...]} else
116 */
5bc6e9e6 117 public function addBcc($params, &$smarty)
b98794ca 118 {
5bc6e9e6 119 $smarty->mailer->addBcc(PlMail::format_addr($params));
b98794ca 120 }
121
b98794ca 122 /** template function : subject.
123 * {subject text=...}
124 */
5bc6e9e6 125 public function setSubject($params, &$smarty)
b98794ca 126 {
127 $smarty->mailer->setSubject($params['text']);
128 }
129
11f44323 130 /** template function : add_header.
131 * {add_header name=... value=...}
132 */
5bc6e9e6 133 public function addHeader($params, &$smarty)
11f44323 134 {
135 $smarty->mailer->addHeader($params['name'], $params['value']);
136 }
b98794ca 137}
b98794ca 138
139require_once('Mail.php');
140require_once('Mail/mime.php');
141
b98794ca 142/** Class for sending inline or multipart-emails.
5bc6e9e6 143 * Based on Diogenes' HermesMailer
b98794ca 144 */
145class PlMailer extends Mail_Mime {
146
147 private $mail;
148 private $page = null;
149 private $charset;
b98794ca 150
a7de4ef7 151 function __construct($tpl = null, $charset = "UTF-8")
b98794ca 152 {
153 $this->charset = $charset;
154 $this->Mail_Mime("\n");
5bc6e9e6 155 $this->mail = @Mail::factory('sendmail', Array('sendmail_args' => '-oi'));
b98794ca 156 if (!is_null($tpl)) {
b2192733 157 $this->page =& PlMail::get($this, $tpl);
b98794ca 158 }
159 }
160
b98794ca 161 /**
162 * converts all : Foo Bar Baz <quux@foobar.org> into "Foo Bar Baz" <quux@foobar.org> which is RFC compliant
163 */
b98794ca 164 private function correct_emails($email)
165 {
5bc6e9e6 166 return preg_replace('!(^|, *)([^<"]+?) *(<[^>]*>)!', '\1"\2" \3', $email);
b98794ca 167 }
168
5bc6e9e6 169 public function addTo($email)
b98794ca 170 {
171 $email = $this->correct_emails($email);
172 if (isset($this->_headers['To'])) {
173 $this->_headers['To'] .= ", $email";
174 } else {
175 $this->_headers['To'] = $email;
176 }
177 }
178
5bc6e9e6 179 public function addCc($email)
b98794ca 180 {
181 return parent::addCc($this->correct_emails($email));
182 }
183
5bc6e9e6 184 public function addBcc($email)
b98794ca 185 {
186 return parent::addBcc($this->correct_emails($email));
187 }
188
5bc6e9e6 189 public function setFrom($email)
b98794ca 190 {
191 return parent::setFrom($this->correct_emails($email));
192 }
193
5bc6e9e6 194 public function addHeader($hdr,$val)
b98794ca 195 {
196 switch($hdr) {
197 case 'From':
198 $this->setFrom($val);
199 break;
200
201 case 'To':
202 unset($this->_headers[$hdr]);
203 $this->addTo($val);
204 break;
205
206 case 'Cc':
207 unset($this->_headers[$hdr]);
208 $this->addCc($val);
209 break;
210
211 case 'Bcc':
212 unset($this->_headers[$hdr]);
213 $this->addBcc($val);
214 break;
215
216 default:
217 $this->headers(Array($hdr=>$val));
218 }
219 }
220
5bc6e9e6 221 public function assign($var, $value)
b98794ca 222 {
223 if (!is_null($this->page)) {
224 $this->page->assign($var, $value);
225 }
226 }
227
5bc6e9e6 228 public function assign_by_ref($var, &$value)
11f44323 229 {
230 if (!is_null($this->page)) {
231 $this->page->assign_by_ref($var, $value);
232 }
233 }
234
5bc6e9e6 235 public function register_modifier($var, $callback)
11f44323 236 {
237 if (!is_null($this->page)) {
238 $this->page->register_modifier($var, $callback);
239 }
240 }
241
5bc6e9e6 242 public function register_function($var, $callback)
11f44323 243 {
244 if (!is_null($this->page)) {
245 $this->page->register_function($var, $callback);
246 }
247 }
248
11f44323 249 private function processPage($with_html = true)
b98794ca 250 {
98441260 251 $level = error_reporting(0);
b98794ca 252 if (!is_null($this->page)) {
253 $this->setTxtBody($this->page->run(false));
11f44323 254 if ($with_html) {
255 $html = trim($this->page->run(true));
256 if (!empty($html)) {
257 $this->setHtmlBody($html);
258 }
b98794ca 259 }
260 }
98441260 261 error_reporting($level);
b98794ca 262 }
263
5bc6e9e6 264 public function send($with_html = true)
b98794ca 265 {
11f44323 266 $this->processPage($with_html);
b98794ca 267 if (S::v('forlife')) {
315fa6ae 268 global $globals;
269 $this->addHeader('X-Org-Mail', S::v('forlife') . '@' . $globals->mail->domain);
b98794ca 270 }
271 $addrs = Array();
272 foreach(Array('To', 'Cc', 'Bcc') as $hdr) {
273 if(isset($this->_headers[$hdr])) {
274 require_once 'Mail/RFC822.php';
c77fed74 275 $parsed = @Mail_RFC822::parseAddressList($this->_headers[$hdr]);
276 if (is_array($parsed)) {
277 $addrs = array_merge($addrs, $parsed);
278 }
b98794ca 279 }
280 }
281 if(empty($addrs)) {
282 return false;
283 }
284
285 $dests = Array();
286 foreach($addrs as $a) {
287 $dests[] = "{$a->mailbox}@{$a->host}";
288 }
289
290 // very important to do it in THIS order very precisely.
291 $body = $this->get(array('text_charset' => $this->charset,
292 'html_charset' => $this->charset,
293 'head_charset' => $this->charset));
294 $hdrs = $this->headers();
434cd6dd 295 if (empty($hdrs['From'])) {
296 trigger_error('Empty "From", mail not sent', E_USER_WARNING);
297 return false;
298 }
b98794ca 299 return $this->mail->send($dests, $hdrs, $body);
300 }
b98794ca 301}
302
a7de4ef7 303// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b98794ca 304?>