xref: /dokuwiki/inc/Mailer.class.php (revision 6be717dbb579e1cc7e2fbb82d7ddade3e5892c47)
1bb01c27cSAndreas Gohr<?php
2bb01c27cSAndreas Gohr/**
31d045709SAndreas Gohr * A class to build and send multi part mails (with HTML content and embedded
41d045709SAndreas Gohr * attachments). All mails are assumed to be in UTF-8 encoding.
51d045709SAndreas Gohr *
61d045709SAndreas Gohr * Attachments are handled in memory so this shouldn't be used to send huge
71d045709SAndreas Gohr * files, but then again mail shouldn't be used to send huge files either.
81d045709SAndreas Gohr *
9bb01c27cSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
10bb01c27cSAndreas Gohr */
11bb01c27cSAndreas Gohr
12bb01c27cSAndreas Gohr// end of line for mail lines - RFC822 says CRLF but postfix (and other MTAs?)
13bb01c27cSAndreas Gohr// think different
14bb01c27cSAndreas Gohrif(!defined('MAILHEADER_EOL')) define('MAILHEADER_EOL', "\n");
15bb01c27cSAndreas Gohr#define('MAILHEADER_ASCIIONLY',1);
16bb01c27cSAndreas Gohr
17a89c75afSAndreas Gohr/**
18a89c75afSAndreas Gohr * Mail Handling
19a89c75afSAndreas Gohr */
20bb01c27cSAndreas Gohrclass Mailer {
21bb01c27cSAndreas Gohr
22f41c79d7SAndreas Gohr    protected $headers   = array();
23f41c79d7SAndreas Gohr    protected $attach    = array();
24f41c79d7SAndreas Gohr    protected $html      = '';
25f41c79d7SAndreas Gohr    protected $text      = '';
26bb01c27cSAndreas Gohr
27f41c79d7SAndreas Gohr    protected $boundary  = '';
28f41c79d7SAndreas Gohr    protected $partid    = '';
29f41c79d7SAndreas Gohr    protected $sendparam = null;
30bb01c27cSAndreas Gohr
31a89c75afSAndreas Gohr    /** @var EmailAddressValidator */
32f41c79d7SAndreas Gohr    protected $validator = null;
33f41c79d7SAndreas Gohr    protected $allowhtml = true;
341d045709SAndreas Gohr
351d045709SAndreas Gohr    /**
361d045709SAndreas Gohr     * Constructor
371d045709SAndreas Gohr     *
381d045709SAndreas Gohr     * Initializes the boundary strings and part counters
391d045709SAndreas Gohr     */
401d045709SAndreas Gohr    public function __construct() {
419f3eca0bSAndreas Gohr        global $conf;
429f3eca0bSAndreas Gohr
439f3eca0bSAndreas Gohr        $server = parse_url(DOKU_URL, PHP_URL_HOST);
44d6e04b60SAndreas Gohr        if(strpos($server,'.') === false) $server = $server.'.localhost';
451d045709SAndreas Gohr
461d8036c2SAndreas Gohr        $this->partid   = substr(md5(uniqid(rand(), true)),0, 8).'@'.$server;
47b3577cf9SAndreas Gohr        $this->boundary = '__________'.md5(uniqid(rand(), true));
489f3eca0bSAndreas Gohr
499f3eca0bSAndreas Gohr        $listid = join('.', array_reverse(explode('/', DOKU_BASE))).$server;
509f3eca0bSAndreas Gohr        $listid = strtolower(trim($listid, '.'));
519f3eca0bSAndreas Gohr
522398a2b5SAndreas Gohr        $this->allowhtml = (bool)$conf['htmlmail'];
532398a2b5SAndreas Gohr
549f3eca0bSAndreas Gohr        // add some default headers for mailfiltering FS#2247
556a1f928fSAndreas Gohr        $this->setHeader('X-Mailer', 'DokuWiki');
569f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-User', $_SERVER['REMOTE_USER']);
579f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Title', $conf['title']);
589f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Server', $server);
599f3eca0bSAndreas Gohr        $this->setHeader('X-Auto-Response-Suppress', 'OOF');
609f3eca0bSAndreas Gohr        $this->setHeader('List-Id', $conf['title'].' <'.$listid.'>');
61d6e04b60SAndreas Gohr        $this->setHeader('Date', date('r'), false);
62bb01c27cSAndreas Gohr    }
63bb01c27cSAndreas Gohr
64bb01c27cSAndreas Gohr    /**
65bb01c27cSAndreas Gohr     * Attach a file
66bb01c27cSAndreas Gohr     *
67a89c75afSAndreas Gohr     * @param string $path  Path to the file to attach
68a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
69a89c75afSAndreas Gohr     * @param string $name The filename to use
70a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
71bb01c27cSAndreas Gohr     */
72bb01c27cSAndreas Gohr    public function attachFile($path, $mime, $name = '', $embed = '') {
73bb01c27cSAndreas Gohr        if(!$name) {
743009a773SAndreas Gohr            $name = utf8_basename($path);
75bb01c27cSAndreas Gohr        }
76bb01c27cSAndreas Gohr
77bb01c27cSAndreas Gohr        $this->attach[] = array(
78bb01c27cSAndreas Gohr            'data'  => file_get_contents($path),
79bb01c27cSAndreas Gohr            'mime'  => $mime,
80bb01c27cSAndreas Gohr            'name'  => $name,
81bb01c27cSAndreas Gohr            'embed' => $embed
82bb01c27cSAndreas Gohr        );
83bb01c27cSAndreas Gohr    }
84bb01c27cSAndreas Gohr
85bb01c27cSAndreas Gohr    /**
86bb01c27cSAndreas Gohr     * Attach a file
87bb01c27cSAndreas Gohr     *
88a89c75afSAndreas Gohr     * @param string $data  The file contents to attach
89a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
90a89c75afSAndreas Gohr     * @param string $name  The filename to use
91a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
92bb01c27cSAndreas Gohr     */
93bb01c27cSAndreas Gohr    public function attachContent($data, $mime, $name = '', $embed = '') {
94bb01c27cSAndreas Gohr        if(!$name) {
95a89c75afSAndreas Gohr            list(, $ext) = explode('/', $mime);
96bb01c27cSAndreas Gohr            $name = count($this->attach).".$ext";
97bb01c27cSAndreas Gohr        }
98bb01c27cSAndreas Gohr
99bb01c27cSAndreas Gohr        $this->attach[] = array(
100bb01c27cSAndreas Gohr            'data'  => $data,
101bb01c27cSAndreas Gohr            'mime'  => $mime,
102bb01c27cSAndreas Gohr            'name'  => $name,
103bb01c27cSAndreas Gohr            'embed' => $embed
104bb01c27cSAndreas Gohr        );
105bb01c27cSAndreas Gohr    }
106bb01c27cSAndreas Gohr
107bb01c27cSAndreas Gohr    /**
108850dbf1fSAndreas Gohr     * Callback function to automatically embed images referenced in HTML templates
109850dbf1fSAndreas Gohr     */
110850dbf1fSAndreas Gohr    protected function autoembed_cb($matches) {
111850dbf1fSAndreas Gohr        static $embeds = 0;
112850dbf1fSAndreas Gohr        $embeds++;
113850dbf1fSAndreas Gohr
114850dbf1fSAndreas Gohr        // get file and mime type
115850dbf1fSAndreas Gohr        $media = cleanID($matches[1]);
116a89c75afSAndreas Gohr        list(, $mime) = mimetype($media);
117850dbf1fSAndreas Gohr        $file = mediaFN($media);
118850dbf1fSAndreas Gohr        if(!file_exists($file)) return $matches[0]; //bad reference, keep as is
119850dbf1fSAndreas Gohr
120850dbf1fSAndreas Gohr        // attach it and set placeholder
121850dbf1fSAndreas Gohr        $this->attachFile($file, $mime, '', 'autoembed'.$embeds);
122850dbf1fSAndreas Gohr        return '%%autoembed'.$embeds.'%%';
123850dbf1fSAndreas Gohr    }
124850dbf1fSAndreas Gohr
125850dbf1fSAndreas Gohr    /**
1261d045709SAndreas Gohr     * Add an arbitrary header to the mail
1271d045709SAndreas Gohr     *
128a36fc348SAndreas Gohr     * If an empy value is passed, the header is removed
129a36fc348SAndreas Gohr     *
1301d045709SAndreas Gohr     * @param string $header the header name (no trailing colon!)
1311d045709SAndreas Gohr     * @param string $value  the value of the header
1321d045709SAndreas Gohr     * @param bool   $clean  remove all non-ASCII chars and line feeds?
1331d045709SAndreas Gohr     */
1341d045709SAndreas Gohr    public function setHeader($header, $value, $clean = true) {
1359f3eca0bSAndreas Gohr        $header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamline casing
1361d045709SAndreas Gohr        if($clean) {
137578b2c23SAndreas Gohr            $header = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@]+/', '', $header);
138578b2c23SAndreas Gohr            $value  = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@<>]+/', '', $value);
1391d045709SAndreas Gohr        }
140a36fc348SAndreas Gohr
141a36fc348SAndreas Gohr        // empty value deletes
142b6c97c70SAndreas Gohr        if(is_array($value)){
143b6c97c70SAndreas Gohr            $value = array_map('trim', $value);
144b6c97c70SAndreas Gohr            $value = array_filter($value);
145b6c97c70SAndreas Gohr            if(!$value) $value = '';
146b6c97c70SAndreas Gohr        }else{
147a36fc348SAndreas Gohr            $value = trim($value);
148b6c97c70SAndreas Gohr        }
149a36fc348SAndreas Gohr        if($value === '') {
150a36fc348SAndreas Gohr            if(isset($this->headers[$header])) unset($this->headers[$header]);
151a36fc348SAndreas Gohr        } else {
1521d045709SAndreas Gohr            $this->headers[$header] = $value;
1531d045709SAndreas Gohr        }
154a36fc348SAndreas Gohr    }
1551d045709SAndreas Gohr
1561d045709SAndreas Gohr    /**
1571d045709SAndreas Gohr     * Set additional parameters to be passed to sendmail
1581d045709SAndreas Gohr     *
1591d045709SAndreas Gohr     * Whatever is set here is directly passed to PHP's mail() command as last
1601d045709SAndreas Gohr     * parameter. Depending on the PHP setup this might break mailing alltogether
1611d045709SAndreas Gohr     */
1621d045709SAndreas Gohr    public function setParameters($param) {
1631d045709SAndreas Gohr        $this->sendparam = $param;
1641d045709SAndreas Gohr    }
1651d045709SAndreas Gohr
1661d045709SAndreas Gohr    /**
167abbf0890SAndreas Gohr     * Set the text and HTML body and apply replacements
168abbf0890SAndreas Gohr     *
169abbf0890SAndreas Gohr     * This function applies a whole bunch of default replacements in addition
170abbf0890SAndreas Gohr     * to the ones specidifed as parameters
171abbf0890SAndreas Gohr     *
172abbf0890SAndreas Gohr     * If you pass the HTML part or HTML replacements yourself you have to make
173abbf0890SAndreas Gohr     * sure you encode all HTML special chars correctly
174abbf0890SAndreas Gohr     *
175abbf0890SAndreas Gohr     * @param string $text     plain text body
176abbf0890SAndreas Gohr     * @param array  $textrep  replacements to apply on the text part
177abbf0890SAndreas Gohr     * @param array  $htmlrep  replacements to apply on the HTML part, leave null to use $textrep
178abbf0890SAndreas Gohr     * @param array  $html     the HTML body, leave null to create it from $text
179f08086ecSAndreas Gohr     * @param bool   $wrap     wrap the HTML in the default header/Footer
180abbf0890SAndreas Gohr     */
181f08086ecSAndreas Gohr    public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) {
182abbf0890SAndreas Gohr        global $INFO;
183abbf0890SAndreas Gohr        global $conf;
18476efd6d0SAndreas Gohr        $htmlrep = (array)$htmlrep;
18576efd6d0SAndreas Gohr        $textrep = (array)$textrep;
186abbf0890SAndreas Gohr
187abbf0890SAndreas Gohr        // create HTML from text if not given
188abbf0890SAndreas Gohr        if(is_null($html)) {
189ba9c057bSAndreas Gohr            $html = $text;
190ba9c057bSAndreas Gohr            $html = hsc($html);
191ba9c057bSAndreas Gohr            $html = preg_replace('/^-----*$/m', '<hr >', $html);
192ba9c057bSAndreas Gohr            $html = nl2br($html);
193abbf0890SAndreas Gohr        }
194f08086ecSAndreas Gohr        if($wrap) {
195f08086ecSAndreas Gohr            $wrap = rawLocale('mailwrap', 'html');
196a4c4a73dSAndreas Gohr            $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
197f08086ecSAndreas Gohr            $html = str_replace('@HTMLBODY@', $html, $wrap);
198f08086ecSAndreas Gohr        }
199f08086ecSAndreas Gohr
20076efd6d0SAndreas Gohr        // copy over all replacements missing for HTML (autolink URLs)
20176efd6d0SAndreas Gohr        foreach($textrep as $key => $value) {
20276efd6d0SAndreas Gohr            if(isset($htmlrep[$key])) continue;
2033e7e6067SKlap-in            if(media_isexternal($value)) {
20476efd6d0SAndreas Gohr                $htmlrep[$key] = '<a href="'.hsc($value).'">'.hsc($value).'</a>';
20576efd6d0SAndreas Gohr            } else {
20676efd6d0SAndreas Gohr                $htmlrep[$key] = hsc($value);
20776efd6d0SAndreas Gohr            }
208abbf0890SAndreas Gohr        }
209abbf0890SAndreas Gohr
210850dbf1fSAndreas Gohr        // embed media from templates
211a89c75afSAndreas Gohr        $html = preg_replace_callback(
212a89c75afSAndreas Gohr            '/@MEDIA\(([^\)]+)\)@/',
213a89c75afSAndreas Gohr            array($this, 'autoembed_cb'), $html
214a89c75afSAndreas Gohr        );
215850dbf1fSAndreas Gohr
216abbf0890SAndreas Gohr        // prepare default replacements
217abbf0890SAndreas Gohr        $ip   = clientIP();
218f08086ecSAndreas Gohr        $cip  = gethostsbyaddrs($ip);
219abbf0890SAndreas Gohr        $trep = array(
220abbf0890SAndreas Gohr            'DATE'        => dformat(),
221abbf0890SAndreas Gohr            'BROWSER'     => $_SERVER['HTTP_USER_AGENT'],
222abbf0890SAndreas Gohr            'IPADDRESS'   => $ip,
223f08086ecSAndreas Gohr            'HOSTNAME'    => $cip,
224abbf0890SAndreas Gohr            'TITLE'       => $conf['title'],
225abbf0890SAndreas Gohr            'DOKUWIKIURL' => DOKU_URL,
226abbf0890SAndreas Gohr            'USER'        => $_SERVER['REMOTE_USER'],
227abbf0890SAndreas Gohr            'NAME'        => $INFO['userinfo']['name'],
228abbf0890SAndreas Gohr            'MAIL'        => $INFO['userinfo']['mail'],
229abbf0890SAndreas Gohr        );
230abbf0890SAndreas Gohr        $trep = array_merge($trep, (array)$textrep);
231abbf0890SAndreas Gohr        $hrep = array(
232abbf0890SAndreas Gohr            'DATE'        => '<i>'.hsc(dformat()).'</i>',
233abbf0890SAndreas Gohr            'BROWSER'     => hsc($_SERVER['HTTP_USER_AGENT']),
234abbf0890SAndreas Gohr            'IPADDRESS'   => '<code>'.hsc($ip).'</code>',
235f08086ecSAndreas Gohr            'HOSTNAME'    => '<code>'.hsc($cip).'</code>',
236abbf0890SAndreas Gohr            'TITLE'       => hsc($conf['title']),
237abbf0890SAndreas Gohr            'DOKUWIKIURL' => '<a href="'.DOKU_URL.'">'.DOKU_URL.'</a>',
238abbf0890SAndreas Gohr            'USER'        => hsc($_SERVER['REMOTE_USER']),
239abbf0890SAndreas Gohr            'NAME'        => hsc($INFO['userinfo']['name']),
240abbf0890SAndreas Gohr            'MAIL'        => '<a href="mailto:"'.hsc($INFO['userinfo']['mail']).'">'.
241abbf0890SAndreas Gohr                hsc($INFO['userinfo']['mail']).'</a>',
242abbf0890SAndreas Gohr        );
243abbf0890SAndreas Gohr        $hrep = array_merge($hrep, (array)$htmlrep);
244abbf0890SAndreas Gohr
245abbf0890SAndreas Gohr        // Apply replacements
246abbf0890SAndreas Gohr        foreach($trep as $key => $substitution) {
247abbf0890SAndreas Gohr            $text = str_replace('@'.strtoupper($key).'@', $substitution, $text);
248abbf0890SAndreas Gohr        }
249abbf0890SAndreas Gohr        foreach($hrep as $key => $substitution) {
250abbf0890SAndreas Gohr            $html = str_replace('@'.strtoupper($key).'@', $substitution, $html);
251abbf0890SAndreas Gohr        }
252abbf0890SAndreas Gohr
253abbf0890SAndreas Gohr        $this->setHTML($html);
254abbf0890SAndreas Gohr        $this->setText($text);
255abbf0890SAndreas Gohr    }
256abbf0890SAndreas Gohr
257abbf0890SAndreas Gohr    /**
258bb01c27cSAndreas Gohr     * Set the HTML part of the mail
259bb01c27cSAndreas Gohr     *
260bb01c27cSAndreas Gohr     * Placeholders can be used to reference embedded attachments
261abbf0890SAndreas Gohr     *
262abbf0890SAndreas Gohr     * You probably want to use setBody() instead
263bb01c27cSAndreas Gohr     */
2641d045709SAndreas Gohr    public function setHTML($html) {
265bb01c27cSAndreas Gohr        $this->html = $html;
266bb01c27cSAndreas Gohr    }
267bb01c27cSAndreas Gohr
268bb01c27cSAndreas Gohr    /**
269bb01c27cSAndreas Gohr     * Set the plain text part of the mail
270abbf0890SAndreas Gohr     *
271abbf0890SAndreas Gohr     * You probably want to use setBody() instead
272bb01c27cSAndreas Gohr     */
2731d045709SAndreas Gohr    public function setText($text) {
274bb01c27cSAndreas Gohr        $this->text = $text;
275bb01c27cSAndreas Gohr    }
276bb01c27cSAndreas Gohr
277bb01c27cSAndreas Gohr    /**
278a36fc348SAndreas Gohr     * Add the To: recipients
279a36fc348SAndreas Gohr     *
280a36fc348SAndreas Gohr     * @see setAddress
281b6c97c70SAndreas Gohr     * @param string|array  $address Multiple adresses separated by commas or as array
282a36fc348SAndreas Gohr     */
283a36fc348SAndreas Gohr    public function to($address) {
284a36fc348SAndreas Gohr        $this->setHeader('To', $address, false);
285a36fc348SAndreas Gohr    }
286a36fc348SAndreas Gohr
287a36fc348SAndreas Gohr    /**
288a36fc348SAndreas Gohr     * Add the Cc: recipients
289a36fc348SAndreas Gohr     *
290a36fc348SAndreas Gohr     * @see setAddress
291b6c97c70SAndreas Gohr     * @param string|array  $address Multiple adresses separated by commas or as array
292a36fc348SAndreas Gohr     */
293a36fc348SAndreas Gohr    public function cc($address) {
294a36fc348SAndreas Gohr        $this->setHeader('Cc', $address, false);
295a36fc348SAndreas Gohr    }
296a36fc348SAndreas Gohr
297a36fc348SAndreas Gohr    /**
298a36fc348SAndreas Gohr     * Add the Bcc: recipients
299a36fc348SAndreas Gohr     *
300a36fc348SAndreas Gohr     * @see setAddress
301b6c97c70SAndreas Gohr     * @param string|array  $address Multiple adresses separated by commas or as array
302a36fc348SAndreas Gohr     */
303a36fc348SAndreas Gohr    public function bcc($address) {
304a36fc348SAndreas Gohr        $this->setHeader('Bcc', $address, false);
305a36fc348SAndreas Gohr    }
306a36fc348SAndreas Gohr
307a36fc348SAndreas Gohr    /**
308a36fc348SAndreas Gohr     * Add the From: address
309a36fc348SAndreas Gohr     *
310a36fc348SAndreas Gohr     * This is set to $conf['mailfrom'] when not specified so you shouldn't need
311a36fc348SAndreas Gohr     * to call this function
312a36fc348SAndreas Gohr     *
313a36fc348SAndreas Gohr     * @see setAddress
314a36fc348SAndreas Gohr     * @param string  $address from address
315a36fc348SAndreas Gohr     */
316a36fc348SAndreas Gohr    public function from($address) {
317a36fc348SAndreas Gohr        $this->setHeader('From', $address, false);
318a36fc348SAndreas Gohr    }
319a36fc348SAndreas Gohr
320a36fc348SAndreas Gohr    /**
321a36fc348SAndreas Gohr     * Add the mail's Subject: header
322a36fc348SAndreas Gohr     *
323a36fc348SAndreas Gohr     * @param string $subject the mail subject
324a36fc348SAndreas Gohr     */
325a36fc348SAndreas Gohr    public function subject($subject) {
326a36fc348SAndreas Gohr        $this->headers['Subject'] = $subject;
327a36fc348SAndreas Gohr    }
328a36fc348SAndreas Gohr
329a36fc348SAndreas Gohr    /**
3301d045709SAndreas Gohr     * Sets an email address header with correct encoding
331bb01c27cSAndreas Gohr     *
332bb01c27cSAndreas Gohr     * Unicode characters will be deaccented and encoded base64
333bb01c27cSAndreas Gohr     * for headers. Addresses may not contain Non-ASCII data!
334bb01c27cSAndreas Gohr     *
335bb01c27cSAndreas Gohr     * Example:
336bb01c27cSAndreas Gohr     *   setAddress("föö <foo@bar.com>, me@somewhere.com","TBcc");
337bb01c27cSAndreas Gohr     *
338b6c97c70SAndreas Gohr     * @param string|array  $address Multiple adresses separated by commas or as array
339a89c75afSAndreas Gohr     * @return bool|string  the prepared header (can contain multiple lines)
340bb01c27cSAndreas Gohr     */
341b6c97c70SAndreas Gohr    public function cleanAddress($addresses) {
342bb01c27cSAndreas Gohr        // No named recipients for To: in Windows (see FS#652)
343bb01c27cSAndreas Gohr        $names = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? false : true;
344bb01c27cSAndreas Gohr
345bb01c27cSAndreas Gohr        $headers = '';
346b6c97c70SAndreas Gohr        if(!is_array($addresses)){
347b6c97c70SAndreas Gohr            $addresses = explode(',', $addresses);
348b6c97c70SAndreas Gohr        }
349b6c97c70SAndreas Gohr
350b6c97c70SAndreas Gohr        foreach($addresses as $part) {
351b6c97c70SAndreas Gohr            $part = preg_replace('/[\r\n\0]+/', ' ', $part); // remove attack vectors
352bb01c27cSAndreas Gohr            $part = trim($part);
353bb01c27cSAndreas Gohr
354bb01c27cSAndreas Gohr            // parse address
355bb01c27cSAndreas Gohr            if(preg_match('#(.*?)<(.*?)>#', $part, $matches)) {
356bb01c27cSAndreas Gohr                $text = trim($matches[1]);
357bb01c27cSAndreas Gohr                $addr = $matches[2];
358bb01c27cSAndreas Gohr            } else {
359bb01c27cSAndreas Gohr                $addr = $part;
360bb01c27cSAndreas Gohr            }
361bb01c27cSAndreas Gohr            // skip empty ones
362bb01c27cSAndreas Gohr            if(empty($addr)) {
363bb01c27cSAndreas Gohr                continue;
364bb01c27cSAndreas Gohr            }
365bb01c27cSAndreas Gohr
366bb01c27cSAndreas Gohr            // FIXME: is there a way to encode the localpart of a emailaddress?
367bb01c27cSAndreas Gohr            if(!utf8_isASCII($addr)) {
368bb01c27cSAndreas Gohr                msg(htmlspecialchars("E-Mail address <$addr> is not ASCII"), -1);
369bb01c27cSAndreas Gohr                continue;
370bb01c27cSAndreas Gohr            }
371bb01c27cSAndreas Gohr
3721d045709SAndreas Gohr            if(is_null($this->validator)) {
3731d045709SAndreas Gohr                $this->validator                      = new EmailAddressValidator();
3741d045709SAndreas Gohr                $this->validator->allowLocalAddresses = true;
3751d045709SAndreas Gohr            }
3761d045709SAndreas Gohr            if(!$this->validator->check_email_address($addr)) {
377bb01c27cSAndreas Gohr                msg(htmlspecialchars("E-Mail address <$addr> is not valid"), -1);
378bb01c27cSAndreas Gohr                continue;
379bb01c27cSAndreas Gohr            }
380bb01c27cSAndreas Gohr
381bb01c27cSAndreas Gohr            // text was given
382bb01c27cSAndreas Gohr            if(!empty($text) && $names) {
383bb01c27cSAndreas Gohr                // add address quotes
384bb01c27cSAndreas Gohr                $addr = "<$addr>";
385bb01c27cSAndreas Gohr
386bb01c27cSAndreas Gohr                if(defined('MAILHEADER_ASCIIONLY')) {
387bb01c27cSAndreas Gohr                    $text = utf8_deaccent($text);
388bb01c27cSAndreas Gohr                    $text = utf8_strip($text);
389bb01c27cSAndreas Gohr                }
390bb01c27cSAndreas Gohr
391b6c97c70SAndreas Gohr                if(strpos($text, ',') !== false || !utf8_isASCII($text)) {
392bb01c27cSAndreas Gohr                    $text = '=?UTF-8?B?'.base64_encode($text).'?=';
393bb01c27cSAndreas Gohr                }
394bb01c27cSAndreas Gohr            } else {
395bb01c27cSAndreas Gohr                $text = '';
396bb01c27cSAndreas Gohr            }
397bb01c27cSAndreas Gohr
398bb01c27cSAndreas Gohr            // add to header comma seperated
399bb01c27cSAndreas Gohr            if($headers != '') {
400bb01c27cSAndreas Gohr                $headers .= ', ';
401bb01c27cSAndreas Gohr            }
402bb01c27cSAndreas Gohr            $headers .= $text.' '.$addr;
403bb01c27cSAndreas Gohr        }
404bb01c27cSAndreas Gohr
405b6c97c70SAndreas Gohr        $headers = trim($headers);
406bb01c27cSAndreas Gohr        if(empty($headers)) return false;
407bb01c27cSAndreas Gohr
408bb01c27cSAndreas Gohr        return $headers;
409bb01c27cSAndreas Gohr    }
410bb01c27cSAndreas Gohr
411bb01c27cSAndreas Gohr
412bb01c27cSAndreas Gohr    /**
413bb01c27cSAndreas Gohr     * Prepare the mime multiparts for all attachments
414bb01c27cSAndreas Gohr     *
415bb01c27cSAndreas Gohr     * Replaces placeholders in the HTML with the correct CIDs
416bb01c27cSAndreas Gohr     */
417bb01c27cSAndreas Gohr    protected function prepareAttachments() {
418bb01c27cSAndreas Gohr        $mime = '';
419bb01c27cSAndreas Gohr        $part = 1;
420bb01c27cSAndreas Gohr        // embedded attachments
421bb01c27cSAndreas Gohr        foreach($this->attach as $media) {
422ce9d2cc8SAndreas Gohr            $media['name'] = str_replace(':', '_', cleanID($media['name'], true));
423ce9d2cc8SAndreas Gohr
424bb01c27cSAndreas Gohr            // create content id
425bb01c27cSAndreas Gohr            $cid = 'part'.$part.'.'.$this->partid;
426bb01c27cSAndreas Gohr
427bb01c27cSAndreas Gohr            // replace wildcards
428bb01c27cSAndreas Gohr            if($media['embed']) {
429bb01c27cSAndreas Gohr                $this->html = str_replace('%%'.$media['embed'].'%%', 'cid:'.$cid, $this->html);
430bb01c27cSAndreas Gohr            }
431bb01c27cSAndreas Gohr
432bb01c27cSAndreas Gohr            $mime .= '--'.$this->boundary.MAILHEADER_EOL;
4331d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Type', $media['mime'].'; id="'.$cid.'"');
4341d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Transfer-Encoding', 'base64');
4351d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-ID',"<$cid>");
436bb01c27cSAndreas Gohr            if($media['embed']) {
4371d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'inline; filename='.$media['name']);
438bb01c27cSAndreas Gohr            } else {
4391d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'attachment; filename='.$media['name']);
440bb01c27cSAndreas Gohr            }
441bb01c27cSAndreas Gohr            $mime .= MAILHEADER_EOL; //end of headers
442bb01c27cSAndreas Gohr            $mime .= chunk_split(base64_encode($media['data']), 74, MAILHEADER_EOL);
443bb01c27cSAndreas Gohr
444bb01c27cSAndreas Gohr            $part++;
445bb01c27cSAndreas Gohr        }
446bb01c27cSAndreas Gohr        return $mime;
447bb01c27cSAndreas Gohr    }
448bb01c27cSAndreas Gohr
4491d045709SAndreas Gohr    /**
4501d045709SAndreas Gohr     * Build the body and handles multi part mails
4511d045709SAndreas Gohr     *
4521d045709SAndreas Gohr     * Needs to be called before prepareHeaders!
4531d045709SAndreas Gohr     *
4541d045709SAndreas Gohr     * @return string the prepared mail body, false on errors
4551d045709SAndreas Gohr     */
4561d045709SAndreas Gohr    protected function prepareBody() {
4571d045709SAndreas Gohr
4582398a2b5SAndreas Gohr        // no HTML mails allowed? remove HTML body
4592398a2b5SAndreas Gohr        if(!$this->allowhtml) {
4602398a2b5SAndreas Gohr            $this->html = '';
4612398a2b5SAndreas Gohr        }
4622398a2b5SAndreas Gohr
463bb01c27cSAndreas Gohr        // check for body
464bb01c27cSAndreas Gohr        if(!$this->text && !$this->html) {
465bb01c27cSAndreas Gohr            return false;
466bb01c27cSAndreas Gohr        }
467bb01c27cSAndreas Gohr
468bb01c27cSAndreas Gohr        // add general headers
469bb01c27cSAndreas Gohr        $this->headers['MIME-Version'] = '1.0';
470bb01c27cSAndreas Gohr
4711d045709SAndreas Gohr        $body = '';
4721d045709SAndreas Gohr
473bb01c27cSAndreas Gohr        if(!$this->html && !count($this->attach)) { // we can send a simple single part message
474bb01c27cSAndreas Gohr            $this->headers['Content-Type']              = 'text/plain; charset=UTF-8';
475bb01c27cSAndreas Gohr            $this->headers['Content-Transfer-Encoding'] = 'base64';
476be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
477bb01c27cSAndreas Gohr        } else { // multi part it is
4781d045709SAndreas Gohr            $body .= "This is a multi-part message in MIME format.".MAILHEADER_EOL;
479bb01c27cSAndreas Gohr
480bb01c27cSAndreas Gohr            // prepare the attachments
481bb01c27cSAndreas Gohr            $attachments = $this->prepareAttachments();
482bb01c27cSAndreas Gohr
483bb01c27cSAndreas Gohr            // do we have alternative text content?
484bb01c27cSAndreas Gohr            if($this->text && $this->html) {
485a36fc348SAndreas Gohr                $this->headers['Content-Type'] = 'multipart/alternative;'.MAILHEADER_EOL.
486a36fc348SAndreas Gohr                    '  boundary="'.$this->boundary.'XX"';
487bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
4881d045709SAndreas Gohr                $body .= 'Content-Type: text/plain; charset=UTF-8'.MAILHEADER_EOL;
4891d045709SAndreas Gohr                $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
490bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
491be3cc6abSAndreas Gohr                $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
492bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
493a36fc348SAndreas Gohr                $body .= 'Content-Type: multipart/related;'.MAILHEADER_EOL.
494d6e04b60SAndreas Gohr                    '  boundary="'.$this->boundary.'";'.MAILHEADER_EOL.
495d6e04b60SAndreas Gohr                    '  type="text/html"'.MAILHEADER_EOL;
496bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
497bb01c27cSAndreas Gohr            }
498bb01c27cSAndreas Gohr
4991d045709SAndreas Gohr            $body .= '--'.$this->boundary.MAILHEADER_EOL;
5001d045709SAndreas Gohr            $body .= 'Content-Type: text/html; charset=UTF-8'.MAILHEADER_EOL;
5011d045709SAndreas Gohr            $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
502bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
503be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->html), 72, MAILHEADER_EOL);
504bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
505bb01c27cSAndreas Gohr            $body .= $attachments;
506bb01c27cSAndreas Gohr            $body .= '--'.$this->boundary.'--'.MAILHEADER_EOL;
507bb01c27cSAndreas Gohr
508bb01c27cSAndreas Gohr            // close open multipart/alternative boundary
509bb01c27cSAndreas Gohr            if($this->text && $this->html) {
510bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX--'.MAILHEADER_EOL;
511bb01c27cSAndreas Gohr            }
512bb01c27cSAndreas Gohr        }
513bb01c27cSAndreas Gohr
514bb01c27cSAndreas Gohr        return $body;
515bb01c27cSAndreas Gohr    }
516bb01c27cSAndreas Gohr
517bb01c27cSAndreas Gohr    /**
518a36fc348SAndreas Gohr     * Cleanup and encode the headers array
519a36fc348SAndreas Gohr     */
520a36fc348SAndreas Gohr    protected function cleanHeaders() {
521a36fc348SAndreas Gohr        global $conf;
522a36fc348SAndreas Gohr
523a36fc348SAndreas Gohr        // clean up addresses
524a36fc348SAndreas Gohr        if(empty($this->headers['From'])) $this->from($conf['mailfrom']);
525a36fc348SAndreas Gohr        $addrs = array('To', 'From', 'Cc', 'Bcc');
526a36fc348SAndreas Gohr        foreach($addrs as $addr) {
527a36fc348SAndreas Gohr            if(isset($this->headers[$addr])) {
528a36fc348SAndreas Gohr                $this->headers[$addr] = $this->cleanAddress($this->headers[$addr]);
529a36fc348SAndreas Gohr            }
530a36fc348SAndreas Gohr        }
531a36fc348SAndreas Gohr
53245992a63SAndreas Gohr        if(isset($this->headers['Subject'])) {
533a36fc348SAndreas Gohr            // add prefix to subject
53454f30755SAndreas Gohr            if(empty($conf['mailprefix'])) {
5358a215f09SAndreas Gohr                if(utf8_strlen($conf['title']) < 20) {
53654f30755SAndreas Gohr                    $prefix = '['.$conf['title'].']';
53754f30755SAndreas Gohr                } else {
5388a215f09SAndreas Gohr                    $prefix = '['.utf8_substr($conf['title'], 0, 20).'...]';
5398a215f09SAndreas Gohr                }
5408a215f09SAndreas Gohr            } else {
541a36fc348SAndreas Gohr                $prefix = '['.$conf['mailprefix'].']';
54254f30755SAndreas Gohr            }
543a36fc348SAndreas Gohr            $len = strlen($prefix);
54445992a63SAndreas Gohr            if(substr($this->headers['Subject'], 0, $len) != $prefix) {
54545992a63SAndreas Gohr                $this->headers['Subject'] = $prefix.' '.$this->headers['Subject'];
546a36fc348SAndreas Gohr            }
547a36fc348SAndreas Gohr
548a36fc348SAndreas Gohr            // encode subject
549a36fc348SAndreas Gohr            if(defined('MAILHEADER_ASCIIONLY')) {
55045992a63SAndreas Gohr                $this->headers['Subject'] = utf8_deaccent($this->headers['Subject']);
55145992a63SAndreas Gohr                $this->headers['Subject'] = utf8_strip($this->headers['Subject']);
552a36fc348SAndreas Gohr            }
553a36fc348SAndreas Gohr            if(!utf8_isASCII($this->headers['Subject'])) {
55445992a63SAndreas Gohr                $this->headers['Subject'] = '=?UTF-8?B?'.base64_encode($this->headers['Subject']).'?=';
555a36fc348SAndreas Gohr            }
556a36fc348SAndreas Gohr        }
557a36fc348SAndreas Gohr
558a36fc348SAndreas Gohr    }
5591d8036c2SAndreas Gohr
5601d8036c2SAndreas Gohr    /**
5611d8036c2SAndreas Gohr     * Returns a complete, EOL terminated header line, wraps it if necessary
5621d8036c2SAndreas Gohr     *
5631d8036c2SAndreas Gohr     * @param $key
5641d8036c2SAndreas Gohr     * @param $val
5651d8036c2SAndreas Gohr     * @return string
5661d8036c2SAndreas Gohr     */
5671d8036c2SAndreas Gohr    protected function wrappedHeaderLine($key, $val){
5681d8036c2SAndreas Gohr        return wordwrap("$key: $val", 78, MAILHEADER_EOL.'  ').MAILHEADER_EOL;
569a36fc348SAndreas Gohr    }
570a36fc348SAndreas Gohr
571a36fc348SAndreas Gohr    /**
572bb01c27cSAndreas Gohr     * Create a string from the headers array
5731d045709SAndreas Gohr     *
5741d045709SAndreas Gohr     * @returns string the headers
575bb01c27cSAndreas Gohr     */
576bb01c27cSAndreas Gohr    protected function prepareHeaders() {
577bb01c27cSAndreas Gohr        $headers = '';
578bb01c27cSAndreas Gohr        foreach($this->headers as $key => $val) {
579*6be717dbSMichael Hamann            if ($val === '' || is_null($val)) continue;
5801d8036c2SAndreas Gohr            $headers .= $this->wrappedHeaderLine($key, $val);
581bb01c27cSAndreas Gohr        }
582bb01c27cSAndreas Gohr        return $headers;
583bb01c27cSAndreas Gohr    }
584bb01c27cSAndreas Gohr
585bb01c27cSAndreas Gohr    /**
586bb01c27cSAndreas Gohr     * return a full email with all headers
587bb01c27cSAndreas Gohr     *
5881d045709SAndreas Gohr     * This is mainly intended for debugging and testing but could also be
5891d045709SAndreas Gohr     * used for MHT exports
5901d045709SAndreas Gohr     *
5911d045709SAndreas Gohr     * @return string the mail, false on errors
592bb01c27cSAndreas Gohr     */
593bb01c27cSAndreas Gohr    public function dump() {
594a36fc348SAndreas Gohr        $this->cleanHeaders();
595bb01c27cSAndreas Gohr        $body = $this->prepareBody();
5964d18e936SAndreas Gohr        if($body === false) return false;
5971d045709SAndreas Gohr        $headers = $this->prepareHeaders();
598bb01c27cSAndreas Gohr
599bb01c27cSAndreas Gohr        return $headers.MAILHEADER_EOL.$body;
600bb01c27cSAndreas Gohr    }
6011d045709SAndreas Gohr
6021d045709SAndreas Gohr    /**
6031d045709SAndreas Gohr     * Send the mail
6041d045709SAndreas Gohr     *
6051d045709SAndreas Gohr     * Call this after all data was set
6061d045709SAndreas Gohr     *
60728d2ad80SAndreas Gohr     * @triggers MAIL_MESSAGE_SEND
6081d045709SAndreas Gohr     * @return bool true if the mail was successfully passed to the MTA
6091d045709SAndreas Gohr     */
6101d045709SAndreas Gohr    public function send() {
61128d2ad80SAndreas Gohr        $success = false;
612a36fc348SAndreas Gohr
61328d2ad80SAndreas Gohr        // prepare hook data
61428d2ad80SAndreas Gohr        $data = array(
61528d2ad80SAndreas Gohr            // pass the whole mail class to plugin
61628d2ad80SAndreas Gohr            'mail'    => $this,
61728d2ad80SAndreas Gohr            // pass references for backward compatibility
61828d2ad80SAndreas Gohr            'to'      => &$this->headers['To'],
61928d2ad80SAndreas Gohr            'cc'      => &$this->headers['Cc'],
62028d2ad80SAndreas Gohr            'bcc'     => &$this->headers['Bcc'],
62128d2ad80SAndreas Gohr            'from'    => &$this->headers['From'],
62228d2ad80SAndreas Gohr            'subject' => &$this->headers['Subject'],
62328d2ad80SAndreas Gohr            'body'    => &$this->text,
624a89c75afSAndreas Gohr            'params'  => &$this->sendparam,
62528d2ad80SAndreas Gohr            'headers' => '', // plugins shouldn't use this
62628d2ad80SAndreas Gohr            // signal if we mailed successfully to AFTER event
62728d2ad80SAndreas Gohr            'success' => &$success,
62828d2ad80SAndreas Gohr        );
62928d2ad80SAndreas Gohr
63028d2ad80SAndreas Gohr        // do our thing if BEFORE hook approves
63128d2ad80SAndreas Gohr        $evt = new Doku_Event('MAIL_MESSAGE_SEND', $data);
63228d2ad80SAndreas Gohr        if($evt->advise_before(true)) {
63328d2ad80SAndreas Gohr            // clean up before using the headers
634a36fc348SAndreas Gohr            $this->cleanHeaders();
635a36fc348SAndreas Gohr
6361d045709SAndreas Gohr            // any recipients?
6371d045709SAndreas Gohr            if(trim($this->headers['To']) === '' &&
6381d045709SAndreas Gohr                trim($this->headers['Cc']) === '' &&
639a89c75afSAndreas Gohr                trim($this->headers['Bcc']) === ''
640a89c75afSAndreas Gohr            ) return false;
6411d045709SAndreas Gohr
6421d045709SAndreas Gohr            // The To: header is special
643*6be717dbSMichael Hamann            if(array_key_exists('To', $this->headers)) {
644*6be717dbSMichael Hamann                $to = (string)$this->headers['To'];
6451d045709SAndreas Gohr                unset($this->headers['To']);
6461d045709SAndreas Gohr            } else {
6471d045709SAndreas Gohr                $to = '';
6481d045709SAndreas Gohr            }
6491d045709SAndreas Gohr
6501d045709SAndreas Gohr            // so is the subject
651*6be717dbSMichael Hamann            if(array_key_exists('Subject', $this->headers)) {
652*6be717dbSMichael Hamann                $subject = (string)$this->headers['Subject'];
6531d045709SAndreas Gohr                unset($this->headers['Subject']);
6541d045709SAndreas Gohr            } else {
6551d045709SAndreas Gohr                $subject = '';
6561d045709SAndreas Gohr            }
6571d045709SAndreas Gohr
6581d045709SAndreas Gohr            // make the body
6591d045709SAndreas Gohr            $body = $this->prepareBody();
6604c89a7f6SAndreas Gohr            if($body === false) return false;
6611d045709SAndreas Gohr
6621d045709SAndreas Gohr            // cook the headers
6631d045709SAndreas Gohr            $headers = $this->prepareHeaders();
66428d2ad80SAndreas Gohr            // add any headers set by legacy plugins
66528d2ad80SAndreas Gohr            if(trim($data['headers'])) {
66628d2ad80SAndreas Gohr                $headers .= MAILHEADER_EOL.trim($data['headers']);
66728d2ad80SAndreas Gohr            }
6681d045709SAndreas Gohr
6691d045709SAndreas Gohr            // send the thing
6701d045709SAndreas Gohr            if(is_null($this->sendparam)) {
67128d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers);
6721d045709SAndreas Gohr            } else {
67328d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers, $this->sendparam);
6741d045709SAndreas Gohr            }
6751d045709SAndreas Gohr        }
67628d2ad80SAndreas Gohr        // any AFTER actions?
67728d2ad80SAndreas Gohr        $evt->advise_after();
67828d2ad80SAndreas Gohr        return $success;
67928d2ad80SAndreas Gohr    }
680bb01c27cSAndreas Gohr}
681