xref: /dokuwiki/inc/Mailer.class.php (revision 68491db90478be1b32bcb6f79572ee25753a079d)
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
12e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event;
13e1d9dcc8SAndreas Gohr
14bb01c27cSAndreas Gohr// end of line for mail lines - RFC822 says CRLF but postfix (and other MTAs?)
15bb01c27cSAndreas Gohr// think different
16bb01c27cSAndreas Gohrif(!defined('MAILHEADER_EOL')) define('MAILHEADER_EOL', "\n");
17bb01c27cSAndreas Gohr#define('MAILHEADER_ASCIIONLY',1);
18bb01c27cSAndreas Gohr
19a89c75afSAndreas Gohr/**
20a89c75afSAndreas Gohr * Mail Handling
21a89c75afSAndreas Gohr */
22bb01c27cSAndreas Gohrclass Mailer {
23bb01c27cSAndreas Gohr
24f41c79d7SAndreas Gohr    protected $headers   = array();
25f41c79d7SAndreas Gohr    protected $attach    = array();
26f41c79d7SAndreas Gohr    protected $html      = '';
27f41c79d7SAndreas Gohr    protected $text      = '';
28bb01c27cSAndreas Gohr
29f41c79d7SAndreas Gohr    protected $boundary  = '';
30f41c79d7SAndreas Gohr    protected $partid    = '';
31f41c79d7SAndreas Gohr    protected $sendparam = null;
32bb01c27cSAndreas Gohr
33f41c79d7SAndreas Gohr    protected $allowhtml = true;
341d045709SAndreas Gohr
359ea45836SChristopher Smith    protected $replacements = array('text'=> array(), 'html' => array());
369ea45836SChristopher Smith
371d045709SAndreas Gohr    /**
381d045709SAndreas Gohr     * Constructor
391d045709SAndreas Gohr     *
409ea45836SChristopher Smith     * Initializes the boundary strings, part counters and token replacements
411d045709SAndreas Gohr     */
421d045709SAndreas Gohr    public function __construct() {
439f3eca0bSAndreas Gohr        global $conf;
44585bf44eSChristopher Smith        /* @var Input $INPUT */
45585bf44eSChristopher Smith        global $INPUT;
469f3eca0bSAndreas Gohr
479f3eca0bSAndreas Gohr        $server = parse_url(DOKU_URL, PHP_URL_HOST);
48749c0023SAndreas Gohr        if(strpos($server,'.') === false) $server .= '.localhost';
491d045709SAndreas Gohr
50749c0023SAndreas Gohr        $this->partid   = substr(md5(uniqid(mt_rand(), true)),0, 8).'@'.$server;
51749c0023SAndreas Gohr        $this->boundary = '__________'.md5(uniqid(mt_rand(), true));
529f3eca0bSAndreas Gohr
53749c0023SAndreas Gohr        $listid = implode('.', array_reverse(explode('/', DOKU_BASE))).$server;
549f3eca0bSAndreas Gohr        $listid = strtolower(trim($listid, '.'));
559f3eca0bSAndreas Gohr
562398a2b5SAndreas Gohr        $this->allowhtml = (bool)$conf['htmlmail'];
572398a2b5SAndreas Gohr
589f3eca0bSAndreas Gohr        // add some default headers for mailfiltering FS#2247
595f43dcf4SLukas Rademacher        if(!empty($conf['mailreturnpath'])) {
605f43dcf4SLukas Rademacher            $this->setHeader('Return-Path', $conf['mailreturnpath']);
615f43dcf4SLukas Rademacher        }
626a1f928fSAndreas Gohr        $this->setHeader('X-Mailer', 'DokuWiki');
63585bf44eSChristopher Smith        $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
649f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Title', $conf['title']);
659f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Server', $server);
669f3eca0bSAndreas Gohr        $this->setHeader('X-Auto-Response-Suppress', 'OOF');
679f3eca0bSAndreas Gohr        $this->setHeader('List-Id', $conf['title'].' <'.$listid.'>');
68d6e04b60SAndreas Gohr        $this->setHeader('Date', date('r'), false);
699ea45836SChristopher Smith
709ea45836SChristopher Smith        $this->prepareTokenReplacements();
71bb01c27cSAndreas Gohr    }
72bb01c27cSAndreas Gohr
73bb01c27cSAndreas Gohr    /**
74bb01c27cSAndreas Gohr     * Attach a file
75bb01c27cSAndreas Gohr     *
76a89c75afSAndreas Gohr     * @param string $path  Path to the file to attach
77a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
78a89c75afSAndreas Gohr     * @param string $name The filename to use
79a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
80bb01c27cSAndreas Gohr     */
81bb01c27cSAndreas Gohr    public function attachFile($path, $mime, $name = '', $embed = '') {
82bb01c27cSAndreas Gohr        if(!$name) {
838cbc5ee8SAndreas Gohr            $name = \dokuwiki\Utf8\PhpString::basename($path);
84bb01c27cSAndreas Gohr        }
85bb01c27cSAndreas Gohr
86bb01c27cSAndreas Gohr        $this->attach[] = array(
87bb01c27cSAndreas Gohr            'data'  => file_get_contents($path),
88bb01c27cSAndreas Gohr            'mime'  => $mime,
89bb01c27cSAndreas Gohr            'name'  => $name,
90bb01c27cSAndreas Gohr            'embed' => $embed
91bb01c27cSAndreas Gohr        );
92bb01c27cSAndreas Gohr    }
93bb01c27cSAndreas Gohr
94bb01c27cSAndreas Gohr    /**
95bb01c27cSAndreas Gohr     * Attach a file
96bb01c27cSAndreas Gohr     *
97a89c75afSAndreas Gohr     * @param string $data  The file contents to attach
98a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
99a89c75afSAndreas Gohr     * @param string $name  The filename to use
100a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
101bb01c27cSAndreas Gohr     */
102bb01c27cSAndreas Gohr    public function attachContent($data, $mime, $name = '', $embed = '') {
103bb01c27cSAndreas Gohr        if(!$name) {
104a89c75afSAndreas Gohr            list(, $ext) = explode('/', $mime);
105bb01c27cSAndreas Gohr            $name = count($this->attach).".$ext";
106bb01c27cSAndreas Gohr        }
107bb01c27cSAndreas Gohr
108bb01c27cSAndreas Gohr        $this->attach[] = array(
109bb01c27cSAndreas Gohr            'data'  => $data,
110bb01c27cSAndreas Gohr            'mime'  => $mime,
111bb01c27cSAndreas Gohr            'name'  => $name,
112bb01c27cSAndreas Gohr            'embed' => $embed
113bb01c27cSAndreas Gohr        );
114bb01c27cSAndreas Gohr    }
115bb01c27cSAndreas Gohr
116bb01c27cSAndreas Gohr    /**
117850dbf1fSAndreas Gohr     * Callback function to automatically embed images referenced in HTML templates
11842ea7f44SGerrit Uitslag     *
11942ea7f44SGerrit Uitslag     * @param array $matches
12042ea7f44SGerrit Uitslag     * @return string placeholder
121850dbf1fSAndreas Gohr     */
122749c0023SAndreas Gohr    protected function autoEmbedCallBack($matches) {
123850dbf1fSAndreas Gohr        static $embeds = 0;
124850dbf1fSAndreas Gohr        $embeds++;
125850dbf1fSAndreas Gohr
126850dbf1fSAndreas Gohr        // get file and mime type
127850dbf1fSAndreas Gohr        $media = cleanID($matches[1]);
128a89c75afSAndreas Gohr        list(, $mime) = mimetype($media);
129850dbf1fSAndreas Gohr        $file = mediaFN($media);
130850dbf1fSAndreas Gohr        if(!file_exists($file)) return $matches[0]; //bad reference, keep as is
131850dbf1fSAndreas Gohr
132850dbf1fSAndreas Gohr        // attach it and set placeholder
133850dbf1fSAndreas Gohr        $this->attachFile($file, $mime, '', 'autoembed'.$embeds);
134850dbf1fSAndreas Gohr        return '%%autoembed'.$embeds.'%%';
135850dbf1fSAndreas Gohr    }
136850dbf1fSAndreas Gohr
137850dbf1fSAndreas Gohr    /**
1381d045709SAndreas Gohr     * Add an arbitrary header to the mail
1391d045709SAndreas Gohr     *
140a36fc348SAndreas Gohr     * If an empy value is passed, the header is removed
141a36fc348SAndreas Gohr     *
1421d045709SAndreas Gohr     * @param string $header the header name (no trailing colon!)
14359bc3b48SGerrit Uitslag     * @param string|string[] $value  the value of the header
1441d045709SAndreas Gohr     * @param bool   $clean  remove all non-ASCII chars and line feeds?
1451d045709SAndreas Gohr     */
1461d045709SAndreas Gohr    public function setHeader($header, $value, $clean = true) {
1479f3eca0bSAndreas Gohr        $header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamline casing
1481d045709SAndreas Gohr        if($clean) {
149578b2c23SAndreas Gohr            $header = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@]+/', '', $header);
150578b2c23SAndreas Gohr            $value  = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@<>]+/', '', $value);
1511d045709SAndreas Gohr        }
152a36fc348SAndreas Gohr
153a36fc348SAndreas Gohr        // empty value deletes
154b6c97c70SAndreas Gohr        if(is_array($value)){
155b6c97c70SAndreas Gohr            $value = array_map('trim', $value);
156b6c97c70SAndreas Gohr            $value = array_filter($value);
157b6c97c70SAndreas Gohr            if(!$value) $value = '';
158b6c97c70SAndreas Gohr        }else{
159a36fc348SAndreas Gohr            $value = trim($value);
160b6c97c70SAndreas Gohr        }
161a36fc348SAndreas Gohr        if($value === '') {
162a36fc348SAndreas Gohr            if(isset($this->headers[$header])) unset($this->headers[$header]);
163a36fc348SAndreas Gohr        } else {
1641d045709SAndreas Gohr            $this->headers[$header] = $value;
1651d045709SAndreas Gohr        }
166a36fc348SAndreas Gohr    }
1671d045709SAndreas Gohr
1681d045709SAndreas Gohr    /**
1691d045709SAndreas Gohr     * Set additional parameters to be passed to sendmail
1701d045709SAndreas Gohr     *
1711d045709SAndreas Gohr     * Whatever is set here is directly passed to PHP's mail() command as last
1721d045709SAndreas Gohr     * parameter. Depending on the PHP setup this might break mailing alltogether
17342ea7f44SGerrit Uitslag     *
17442ea7f44SGerrit Uitslag     * @param string $param
1751d045709SAndreas Gohr     */
1761d045709SAndreas Gohr    public function setParameters($param) {
1771d045709SAndreas Gohr        $this->sendparam = $param;
1781d045709SAndreas Gohr    }
1791d045709SAndreas Gohr
1801d045709SAndreas Gohr    /**
181abbf0890SAndreas Gohr     * Set the text and HTML body and apply replacements
182abbf0890SAndreas Gohr     *
183abbf0890SAndreas Gohr     * This function applies a whole bunch of default replacements in addition
18404dcb5b2SChristopher Smith     * to the ones specified as parameters
185abbf0890SAndreas Gohr     *
186abbf0890SAndreas Gohr     * If you pass the HTML part or HTML replacements yourself you have to make
187abbf0890SAndreas Gohr     * sure you encode all HTML special chars correctly
188abbf0890SAndreas Gohr     *
189abbf0890SAndreas Gohr     * @param string $text     plain text body
190abbf0890SAndreas Gohr     * @param array  $textrep  replacements to apply on the text part
19164159a61SAndreas Gohr     * @param array  $htmlrep  replacements to apply on the HTML part, null to use $textrep (urls wrapped in <a> tags)
19259bc3b48SGerrit Uitslag     * @param string $html     the HTML body, leave null to create it from $text
193f08086ecSAndreas Gohr     * @param bool   $wrap     wrap the HTML in the default header/Footer
194abbf0890SAndreas Gohr     */
195f08086ecSAndreas Gohr    public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) {
196585bf44eSChristopher Smith
19776efd6d0SAndreas Gohr        $htmlrep = (array)$htmlrep;
19876efd6d0SAndreas Gohr        $textrep = (array)$textrep;
199abbf0890SAndreas Gohr
200abbf0890SAndreas Gohr        // create HTML from text if not given
201749c0023SAndreas Gohr        if($html === null) {
202ba9c057bSAndreas Gohr            $html = $text;
203ba9c057bSAndreas Gohr            $html = hsc($html);
204ba2c2f17Sfurun            $html = preg_replace('/^----+$/m', '<hr >', $html);
205ba9c057bSAndreas Gohr            $html = nl2br($html);
206abbf0890SAndreas Gohr        }
207f08086ecSAndreas Gohr        if($wrap) {
208749c0023SAndreas Gohr            $wrapper = rawLocale('mailwrap', 'html');
2093819cafdSfurun            $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
2103819cafdSfurun            $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@
211749c0023SAndreas Gohr            $html = str_replace('@HTMLBODY@', $html, $wrapper);
212f08086ecSAndreas Gohr        }
213f08086ecSAndreas Gohr
2143819cafdSfurun        if(strpos($text, '@EMAILSIGNATURE@') === false) {
2159ea45836SChristopher Smith            $text .= '@EMAILSIGNATURE@';
2163819cafdSfurun        }
217ba2c2f17Sfurun
21876efd6d0SAndreas Gohr        // copy over all replacements missing for HTML (autolink URLs)
21976efd6d0SAndreas Gohr        foreach($textrep as $key => $value) {
22076efd6d0SAndreas Gohr            if(isset($htmlrep[$key])) continue;
2213e7e6067SKlap-in            if(media_isexternal($value)) {
22276efd6d0SAndreas Gohr                $htmlrep[$key] = '<a href="'.hsc($value).'">'.hsc($value).'</a>';
22376efd6d0SAndreas Gohr            } else {
22476efd6d0SAndreas Gohr                $htmlrep[$key] = hsc($value);
22576efd6d0SAndreas Gohr            }
226abbf0890SAndreas Gohr        }
227abbf0890SAndreas Gohr
228850dbf1fSAndreas Gohr        // embed media from templates
229a89c75afSAndreas Gohr        $html = preg_replace_callback(
230a89c75afSAndreas Gohr            '/@MEDIA\(([^\)]+)\)@/',
231749c0023SAndreas Gohr            array($this, 'autoEmbedCallBack'), $html
232a89c75afSAndreas Gohr        );
233850dbf1fSAndreas Gohr
2349ea45836SChristopher Smith        // add default token replacements
2359ea45836SChristopher Smith        $trep = array_merge($this->replacements['text'], (array)$textrep);
2369ea45836SChristopher Smith        $hrep = array_merge($this->replacements['html'], (array)$htmlrep);
237abbf0890SAndreas Gohr
238abbf0890SAndreas Gohr        // Apply replacements
239abbf0890SAndreas Gohr        foreach($trep as $key => $substitution) {
240abbf0890SAndreas Gohr            $text = str_replace('@'.strtoupper($key).'@', $substitution, $text);
241abbf0890SAndreas Gohr        }
242abbf0890SAndreas Gohr        foreach($hrep as $key => $substitution) {
243abbf0890SAndreas Gohr            $html = str_replace('@'.strtoupper($key).'@', $substitution, $html);
244abbf0890SAndreas Gohr        }
245abbf0890SAndreas Gohr
246abbf0890SAndreas Gohr        $this->setHTML($html);
247abbf0890SAndreas Gohr        $this->setText($text);
248abbf0890SAndreas Gohr    }
249abbf0890SAndreas Gohr
250abbf0890SAndreas Gohr    /**
251bb01c27cSAndreas Gohr     * Set the HTML part of the mail
252bb01c27cSAndreas Gohr     *
253bb01c27cSAndreas Gohr     * Placeholders can be used to reference embedded attachments
254abbf0890SAndreas Gohr     *
255abbf0890SAndreas Gohr     * You probably want to use setBody() instead
25642ea7f44SGerrit Uitslag     *
25742ea7f44SGerrit Uitslag     * @param string $html
258bb01c27cSAndreas Gohr     */
2591d045709SAndreas Gohr    public function setHTML($html) {
260bb01c27cSAndreas Gohr        $this->html = $html;
261bb01c27cSAndreas Gohr    }
262bb01c27cSAndreas Gohr
263bb01c27cSAndreas Gohr    /**
264bb01c27cSAndreas Gohr     * Set the plain text part of the mail
265abbf0890SAndreas Gohr     *
266abbf0890SAndreas Gohr     * You probably want to use setBody() instead
26742ea7f44SGerrit Uitslag     *
26842ea7f44SGerrit Uitslag     * @param string $text
269bb01c27cSAndreas Gohr     */
2701d045709SAndreas Gohr    public function setText($text) {
271bb01c27cSAndreas Gohr        $this->text = $text;
272bb01c27cSAndreas Gohr    }
273bb01c27cSAndreas Gohr
274bb01c27cSAndreas Gohr    /**
275a36fc348SAndreas Gohr     * Add the To: recipients
276a36fc348SAndreas Gohr     *
2778c253612SGerrit Uitslag     * @see cleanAddress
27859bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
279a36fc348SAndreas Gohr     */
280a36fc348SAndreas Gohr    public function to($address) {
281a36fc348SAndreas Gohr        $this->setHeader('To', $address, false);
282a36fc348SAndreas Gohr    }
283a36fc348SAndreas Gohr
284a36fc348SAndreas Gohr    /**
285a36fc348SAndreas Gohr     * Add the Cc: recipients
286a36fc348SAndreas Gohr     *
2878c253612SGerrit Uitslag     * @see cleanAddress
28859bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
289a36fc348SAndreas Gohr     */
290a36fc348SAndreas Gohr    public function cc($address) {
291a36fc348SAndreas Gohr        $this->setHeader('Cc', $address, false);
292a36fc348SAndreas Gohr    }
293a36fc348SAndreas Gohr
294a36fc348SAndreas Gohr    /**
295a36fc348SAndreas Gohr     * Add the Bcc: recipients
296a36fc348SAndreas Gohr     *
2978c253612SGerrit Uitslag     * @see cleanAddress
29859bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
299a36fc348SAndreas Gohr     */
300a36fc348SAndreas Gohr    public function bcc($address) {
301a36fc348SAndreas Gohr        $this->setHeader('Bcc', $address, false);
302a36fc348SAndreas Gohr    }
303a36fc348SAndreas Gohr
304a36fc348SAndreas Gohr    /**
305a36fc348SAndreas Gohr     * Add the From: address
306a36fc348SAndreas Gohr     *
307a36fc348SAndreas Gohr     * This is set to $conf['mailfrom'] when not specified so you shouldn't need
308a36fc348SAndreas Gohr     * to call this function
309a36fc348SAndreas Gohr     *
3108c253612SGerrit Uitslag     * @see cleanAddress
311a36fc348SAndreas Gohr     * @param string  $address from address
312a36fc348SAndreas Gohr     */
313a36fc348SAndreas Gohr    public function from($address) {
314a36fc348SAndreas Gohr        $this->setHeader('From', $address, false);
315a36fc348SAndreas Gohr    }
316a36fc348SAndreas Gohr
317a36fc348SAndreas Gohr    /**
318a36fc348SAndreas Gohr     * Add the mail's Subject: header
319a36fc348SAndreas Gohr     *
320a36fc348SAndreas Gohr     * @param string $subject the mail subject
321a36fc348SAndreas Gohr     */
322a36fc348SAndreas Gohr    public function subject($subject) {
323a36fc348SAndreas Gohr        $this->headers['Subject'] = $subject;
324a36fc348SAndreas Gohr    }
325a36fc348SAndreas Gohr
326a36fc348SAndreas Gohr    /**
327102cdbd7SLarsGit223     * Return a clean name which can be safely used in mail address
328102cdbd7SLarsGit223     * fields. That means the name will be enclosed in '"' if it includes
329102cdbd7SLarsGit223     * a '"' or a ','. Also a '"' will be escaped as '\"'.
330102cdbd7SLarsGit223     *
331102cdbd7SLarsGit223     * @param string $name the name to clean-up
332102cdbd7SLarsGit223     * @see cleanAddress
333102cdbd7SLarsGit223     */
334102cdbd7SLarsGit223    public function getCleanName($name) {
335102cdbd7SLarsGit223        $name = trim($name, ' \t"');
336102cdbd7SLarsGit223        $name = str_replace('"', '\"', $name, $count);
337102cdbd7SLarsGit223        if ($count > 0 || strpos($name, ',') !== false) {
338102cdbd7SLarsGit223            $name = '"'.$name.'"';
339102cdbd7SLarsGit223        }
340102cdbd7SLarsGit223        return $name;
341102cdbd7SLarsGit223    }
342102cdbd7SLarsGit223
343102cdbd7SLarsGit223    /**
3441d045709SAndreas Gohr     * Sets an email address header with correct encoding
345bb01c27cSAndreas Gohr     *
346bb01c27cSAndreas Gohr     * Unicode characters will be deaccented and encoded base64
347bb01c27cSAndreas Gohr     * for headers. Addresses may not contain Non-ASCII data!
348bb01c27cSAndreas Gohr     *
349102cdbd7SLarsGit223     * If @$addresses is a string then it will be split into multiple
350102cdbd7SLarsGit223     * addresses. Addresses must be separated by a comma. If the display
351102cdbd7SLarsGit223     * name includes a comma then it MUST be properly enclosed by '"' to
352102cdbd7SLarsGit223     * prevent spliting at the wrong point.
353102cdbd7SLarsGit223     *
354bb01c27cSAndreas Gohr     * Example:
3558c253612SGerrit Uitslag     *   cc("föö <foo@bar.com>, me@somewhere.com","TBcc");
356102cdbd7SLarsGit223     *   to("foo, Dr." <foo@bar.com>, me@somewhere.com");
357bb01c27cSAndreas Gohr     *
35842ea7f44SGerrit Uitslag     * @param string|string[]  $addresses Multiple adresses separated by commas or as array
35942ea7f44SGerrit Uitslag     * @return false|string  the prepared header (can contain multiple lines)
360bb01c27cSAndreas Gohr     */
361b6c97c70SAndreas Gohr    public function cleanAddress($addresses) {
362bb01c27cSAndreas Gohr        $headers = '';
363b6c97c70SAndreas Gohr        if(!is_array($addresses)){
364d31a1599SLarsGit223            $count = preg_match_all('/\s*(?:("[^"]*"[^,]+),*)|([^,]+)\s*,*/', $addresses, $matches, PREG_SET_ORDER);
365102cdbd7SLarsGit223            $addresses = array();
366743792d0SLarsGit223            if ($count !== false && is_array($matches)) {
367102cdbd7SLarsGit223                foreach ($matches as $match) {
368102cdbd7SLarsGit223                    array_push($addresses, $match[0]);
369102cdbd7SLarsGit223                }
370b6c97c70SAndreas Gohr            }
371b6c97c70SAndreas Gohr        }
372b6c97c70SAndreas Gohr
373b6c97c70SAndreas Gohr        foreach($addresses as $part) {
374b6c97c70SAndreas Gohr            $part = preg_replace('/[\r\n\0]+/', ' ', $part); // remove attack vectors
375bb01c27cSAndreas Gohr            $part = trim($part);
376bb01c27cSAndreas Gohr
377bb01c27cSAndreas Gohr            // parse address
378bb01c27cSAndreas Gohr            if(preg_match('#(.*?)<(.*?)>#', $part, $matches)) {
379bb01c27cSAndreas Gohr                $text = trim($matches[1]);
380bb01c27cSAndreas Gohr                $addr = $matches[2];
381bb01c27cSAndreas Gohr            } else {
382bb01c27cSAndreas Gohr                $addr = $part;
383bb01c27cSAndreas Gohr            }
384bb01c27cSAndreas Gohr            // skip empty ones
385bb01c27cSAndreas Gohr            if(empty($addr)) {
386bb01c27cSAndreas Gohr                continue;
387bb01c27cSAndreas Gohr            }
388bb01c27cSAndreas Gohr
389bb01c27cSAndreas Gohr            // FIXME: is there a way to encode the localpart of a emailaddress?
3908cbc5ee8SAndreas Gohr            if(!\dokuwiki\Utf8\Clean::isASCII($addr)) {
39165cc1598SPhy                msg(hsc("E-Mail address <$addr> is not ASCII"), -1);
392bb01c27cSAndreas Gohr                continue;
393bb01c27cSAndreas Gohr            }
394bb01c27cSAndreas Gohr
39564d23c16SAndreas Gohr            if(!mail_isvalid($addr)) {
39665cc1598SPhy                msg(hsc("E-Mail address <$addr> is not valid"), -1);
397bb01c27cSAndreas Gohr                continue;
398bb01c27cSAndreas Gohr            }
399bb01c27cSAndreas Gohr
400bb01c27cSAndreas Gohr            // text was given
40130085ef3SYurii K            if(!empty($text) && !isWindows()) { // No named recipients for To: in Windows (see FS#652)
402bb01c27cSAndreas Gohr                // add address quotes
403bb01c27cSAndreas Gohr                $addr = "<$addr>";
404bb01c27cSAndreas Gohr
405bb01c27cSAndreas Gohr                if(defined('MAILHEADER_ASCIIONLY')) {
4068cbc5ee8SAndreas Gohr                    $text = \dokuwiki\Utf8\Clean::deaccent($text);
4078cbc5ee8SAndreas Gohr                    $text = \dokuwiki\Utf8\Clean::strip($text);
408bb01c27cSAndreas Gohr                }
409bb01c27cSAndreas Gohr
4108cbc5ee8SAndreas Gohr                if(strpos($text, ',') !== false || !\dokuwiki\Utf8\Clean::isASCII($text)) {
411bb01c27cSAndreas Gohr                    $text = '=?UTF-8?B?'.base64_encode($text).'?=';
412bb01c27cSAndreas Gohr                }
413bb01c27cSAndreas Gohr            } else {
414bb01c27cSAndreas Gohr                $text = '';
415bb01c27cSAndreas Gohr            }
416bb01c27cSAndreas Gohr
417bb01c27cSAndreas Gohr            // add to header comma seperated
418bb01c27cSAndreas Gohr            if($headers != '') {
419bb01c27cSAndreas Gohr                $headers .= ', ';
420bb01c27cSAndreas Gohr            }
421bb01c27cSAndreas Gohr            $headers .= $text.' '.$addr;
422bb01c27cSAndreas Gohr        }
423bb01c27cSAndreas Gohr
424b6c97c70SAndreas Gohr        $headers = trim($headers);
425bb01c27cSAndreas Gohr        if(empty($headers)) return false;
426bb01c27cSAndreas Gohr
427bb01c27cSAndreas Gohr        return $headers;
428bb01c27cSAndreas Gohr    }
429bb01c27cSAndreas Gohr
430bb01c27cSAndreas Gohr
431bb01c27cSAndreas Gohr    /**
432bb01c27cSAndreas Gohr     * Prepare the mime multiparts for all attachments
433bb01c27cSAndreas Gohr     *
434bb01c27cSAndreas Gohr     * Replaces placeholders in the HTML with the correct CIDs
43542ea7f44SGerrit Uitslag     *
43642ea7f44SGerrit Uitslag     * @return string mime multiparts
437bb01c27cSAndreas Gohr     */
438bb01c27cSAndreas Gohr    protected function prepareAttachments() {
439bb01c27cSAndreas Gohr        $mime = '';
440bb01c27cSAndreas Gohr        $part = 1;
441bb01c27cSAndreas Gohr        // embedded attachments
442bb01c27cSAndreas Gohr        foreach($this->attach as $media) {
443ce9d2cc8SAndreas Gohr            $media['name'] = str_replace(':', '_', cleanID($media['name'], true));
444ce9d2cc8SAndreas Gohr
445bb01c27cSAndreas Gohr            // create content id
446bb01c27cSAndreas Gohr            $cid = 'part'.$part.'.'.$this->partid;
447bb01c27cSAndreas Gohr
448bb01c27cSAndreas Gohr            // replace wildcards
449bb01c27cSAndreas Gohr            if($media['embed']) {
450bb01c27cSAndreas Gohr                $this->html = str_replace('%%'.$media['embed'].'%%', 'cid:'.$cid, $this->html);
451bb01c27cSAndreas Gohr            }
452bb01c27cSAndreas Gohr
453bb01c27cSAndreas Gohr            $mime .= '--'.$this->boundary.MAILHEADER_EOL;
4541d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Type', $media['mime'].'; id="'.$cid.'"');
4551d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Transfer-Encoding', 'base64');
4561d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-ID',"<$cid>");
457bb01c27cSAndreas Gohr            if($media['embed']) {
4581d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'inline; filename='.$media['name']);
459bb01c27cSAndreas Gohr            } else {
4601d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'attachment; filename='.$media['name']);
461bb01c27cSAndreas Gohr            }
462bb01c27cSAndreas Gohr            $mime .= MAILHEADER_EOL; //end of headers
463bb01c27cSAndreas Gohr            $mime .= chunk_split(base64_encode($media['data']), 74, MAILHEADER_EOL);
464bb01c27cSAndreas Gohr
465bb01c27cSAndreas Gohr            $part++;
466bb01c27cSAndreas Gohr        }
467bb01c27cSAndreas Gohr        return $mime;
468bb01c27cSAndreas Gohr    }
469bb01c27cSAndreas Gohr
4701d045709SAndreas Gohr    /**
4711d045709SAndreas Gohr     * Build the body and handles multi part mails
4721d045709SAndreas Gohr     *
4731d045709SAndreas Gohr     * Needs to be called before prepareHeaders!
4741d045709SAndreas Gohr     *
4751d045709SAndreas Gohr     * @return string the prepared mail body, false on errors
4761d045709SAndreas Gohr     */
4771d045709SAndreas Gohr    protected function prepareBody() {
4781d045709SAndreas Gohr
4792398a2b5SAndreas Gohr        // no HTML mails allowed? remove HTML body
4802398a2b5SAndreas Gohr        if(!$this->allowhtml) {
4812398a2b5SAndreas Gohr            $this->html = '';
4822398a2b5SAndreas Gohr        }
4832398a2b5SAndreas Gohr
484bb01c27cSAndreas Gohr        // check for body
485bb01c27cSAndreas Gohr        if(!$this->text && !$this->html) {
486bb01c27cSAndreas Gohr            return false;
487bb01c27cSAndreas Gohr        }
488bb01c27cSAndreas Gohr
489bb01c27cSAndreas Gohr        // add general headers
490bb01c27cSAndreas Gohr        $this->headers['MIME-Version'] = '1.0';
491bb01c27cSAndreas Gohr
4921d045709SAndreas Gohr        $body = '';
4931d045709SAndreas Gohr
494bb01c27cSAndreas Gohr        if(!$this->html && !count($this->attach)) { // we can send a simple single part message
495bb01c27cSAndreas Gohr            $this->headers['Content-Type']              = 'text/plain; charset=UTF-8';
496bb01c27cSAndreas Gohr            $this->headers['Content-Transfer-Encoding'] = 'base64';
497be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
498bb01c27cSAndreas Gohr        } else { // multi part it is
4991d045709SAndreas Gohr            $body .= "This is a multi-part message in MIME format.".MAILHEADER_EOL;
500bb01c27cSAndreas Gohr
501bb01c27cSAndreas Gohr            // prepare the attachments
502bb01c27cSAndreas Gohr            $attachments = $this->prepareAttachments();
503bb01c27cSAndreas Gohr
504bb01c27cSAndreas Gohr            // do we have alternative text content?
505bb01c27cSAndreas Gohr            if($this->text && $this->html) {
506a36fc348SAndreas Gohr                $this->headers['Content-Type'] = 'multipart/alternative;'.MAILHEADER_EOL.
507a36fc348SAndreas Gohr                    '  boundary="'.$this->boundary.'XX"';
508bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
5091d045709SAndreas Gohr                $body .= 'Content-Type: text/plain; charset=UTF-8'.MAILHEADER_EOL;
5101d045709SAndreas Gohr                $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
511bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
512be3cc6abSAndreas Gohr                $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
513bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
514a36fc348SAndreas Gohr                $body .= 'Content-Type: multipart/related;'.MAILHEADER_EOL.
515d6e04b60SAndreas Gohr                    '  boundary="'.$this->boundary.'";'.MAILHEADER_EOL.
516d6e04b60SAndreas Gohr                    '  type="text/html"'.MAILHEADER_EOL;
517bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
518bb01c27cSAndreas Gohr            }
519bb01c27cSAndreas Gohr
5201d045709SAndreas Gohr            $body .= '--'.$this->boundary.MAILHEADER_EOL;
5211d045709SAndreas Gohr            $body .= 'Content-Type: text/html; charset=UTF-8'.MAILHEADER_EOL;
5221d045709SAndreas Gohr            $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
523bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
524be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->html), 72, MAILHEADER_EOL);
525bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
526bb01c27cSAndreas Gohr            $body .= $attachments;
527bb01c27cSAndreas Gohr            $body .= '--'.$this->boundary.'--'.MAILHEADER_EOL;
528bb01c27cSAndreas Gohr
529bb01c27cSAndreas Gohr            // close open multipart/alternative boundary
530bb01c27cSAndreas Gohr            if($this->text && $this->html) {
531bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX--'.MAILHEADER_EOL;
532bb01c27cSAndreas Gohr            }
533bb01c27cSAndreas Gohr        }
534bb01c27cSAndreas Gohr
535bb01c27cSAndreas Gohr        return $body;
536bb01c27cSAndreas Gohr    }
537bb01c27cSAndreas Gohr
538bb01c27cSAndreas Gohr    /**
539a36fc348SAndreas Gohr     * Cleanup and encode the headers array
540a36fc348SAndreas Gohr     */
541a36fc348SAndreas Gohr    protected function cleanHeaders() {
542a36fc348SAndreas Gohr        global $conf;
543a36fc348SAndreas Gohr
544a36fc348SAndreas Gohr        // clean up addresses
545a36fc348SAndreas Gohr        if(empty($this->headers['From'])) $this->from($conf['mailfrom']);
546acbf061cSGerrit Uitslag        $addrs = array('To', 'From', 'Cc', 'Bcc', 'Reply-To', 'Sender');
547a36fc348SAndreas Gohr        foreach($addrs as $addr) {
548a36fc348SAndreas Gohr            if(isset($this->headers[$addr])) {
549a36fc348SAndreas Gohr                $this->headers[$addr] = $this->cleanAddress($this->headers[$addr]);
550a36fc348SAndreas Gohr            }
551a36fc348SAndreas Gohr        }
552a36fc348SAndreas Gohr
55345992a63SAndreas Gohr        if(isset($this->headers['Subject'])) {
554a36fc348SAndreas Gohr            // add prefix to subject
55554f30755SAndreas Gohr            if(empty($conf['mailprefix'])) {
5568cbc5ee8SAndreas Gohr                if(\dokuwiki\Utf8\PhpString::strlen($conf['title']) < 20) {
55754f30755SAndreas Gohr                    $prefix = '['.$conf['title'].']';
55854f30755SAndreas Gohr                } else {
5598cbc5ee8SAndreas Gohr                    $prefix = '['.\dokuwiki\Utf8\PhpString::substr($conf['title'], 0, 20).'...]';
5608a215f09SAndreas Gohr                }
5618a215f09SAndreas Gohr            } else {
562a36fc348SAndreas Gohr                $prefix = '['.$conf['mailprefix'].']';
56354f30755SAndreas Gohr            }
564a36fc348SAndreas Gohr            $len = strlen($prefix);
56545992a63SAndreas Gohr            if(substr($this->headers['Subject'], 0, $len) != $prefix) {
56645992a63SAndreas Gohr                $this->headers['Subject'] = $prefix.' '.$this->headers['Subject'];
567a36fc348SAndreas Gohr            }
568a36fc348SAndreas Gohr
569a36fc348SAndreas Gohr            // encode subject
570a36fc348SAndreas Gohr            if(defined('MAILHEADER_ASCIIONLY')) {
5718cbc5ee8SAndreas Gohr                $this->headers['Subject'] = \dokuwiki\Utf8\Clean::deaccent($this->headers['Subject']);
5728cbc5ee8SAndreas Gohr                $this->headers['Subject'] = \dokuwiki\Utf8\Clean::strip($this->headers['Subject']);
573a36fc348SAndreas Gohr            }
5748cbc5ee8SAndreas Gohr            if(!\dokuwiki\Utf8\Clean::isASCII($this->headers['Subject'])) {
57545992a63SAndreas Gohr                $this->headers['Subject'] = '=?UTF-8?B?'.base64_encode($this->headers['Subject']).'?=';
576a36fc348SAndreas Gohr            }
577a36fc348SAndreas Gohr        }
578a36fc348SAndreas Gohr
579a36fc348SAndreas Gohr    }
5801d8036c2SAndreas Gohr
5811d8036c2SAndreas Gohr    /**
5821d8036c2SAndreas Gohr     * Returns a complete, EOL terminated header line, wraps it if necessary
5831d8036c2SAndreas Gohr     *
58442ea7f44SGerrit Uitslag     * @param string $key
58542ea7f44SGerrit Uitslag     * @param string $val
58642ea7f44SGerrit Uitslag     * @return string line
5871d8036c2SAndreas Gohr     */
5881d8036c2SAndreas Gohr    protected function wrappedHeaderLine($key, $val){
5891d8036c2SAndreas Gohr        return wordwrap("$key: $val", 78, MAILHEADER_EOL.'  ').MAILHEADER_EOL;
590a36fc348SAndreas Gohr    }
591a36fc348SAndreas Gohr
592a36fc348SAndreas Gohr    /**
593bb01c27cSAndreas Gohr     * Create a string from the headers array
5941d045709SAndreas Gohr     *
5951d045709SAndreas Gohr     * @returns string the headers
596bb01c27cSAndreas Gohr     */
597bb01c27cSAndreas Gohr    protected function prepareHeaders() {
598bb01c27cSAndreas Gohr        $headers = '';
599bb01c27cSAndreas Gohr        foreach($this->headers as $key => $val) {
600749c0023SAndreas Gohr            if ($val === '' || $val === null) continue;
6011d8036c2SAndreas Gohr            $headers .= $this->wrappedHeaderLine($key, $val);
602bb01c27cSAndreas Gohr        }
603bb01c27cSAndreas Gohr        return $headers;
604bb01c27cSAndreas Gohr    }
605bb01c27cSAndreas Gohr
606bb01c27cSAndreas Gohr    /**
607bb01c27cSAndreas Gohr     * return a full email with all headers
608bb01c27cSAndreas Gohr     *
6091d045709SAndreas Gohr     * This is mainly intended for debugging and testing but could also be
6101d045709SAndreas Gohr     * used for MHT exports
6111d045709SAndreas Gohr     *
6121d045709SAndreas Gohr     * @return string the mail, false on errors
613bb01c27cSAndreas Gohr     */
614bb01c27cSAndreas Gohr    public function dump() {
615a36fc348SAndreas Gohr        $this->cleanHeaders();
616bb01c27cSAndreas Gohr        $body = $this->prepareBody();
6174d18e936SAndreas Gohr        if($body === false) return false;
6181d045709SAndreas Gohr        $headers = $this->prepareHeaders();
619bb01c27cSAndreas Gohr
620bb01c27cSAndreas Gohr        return $headers.MAILHEADER_EOL.$body;
621bb01c27cSAndreas Gohr    }
6221d045709SAndreas Gohr
6231d045709SAndreas Gohr    /**
6249ea45836SChristopher Smith     * Prepare default token replacement strings
6259ea45836SChristopher Smith     *
6269ea45836SChristopher Smith     * Populates the '$replacements' property.
6279ea45836SChristopher Smith     * Should be called by the class constructor
6289ea45836SChristopher Smith     */
6299ea45836SChristopher Smith    protected function prepareTokenReplacements() {
6309ea45836SChristopher Smith        global $INFO;
6319ea45836SChristopher Smith        global $conf;
6329ea45836SChristopher Smith        /* @var Input $INPUT */
6339ea45836SChristopher Smith        global $INPUT;
6349ea45836SChristopher Smith        global $lang;
6359ea45836SChristopher Smith
6369ea45836SChristopher Smith        $ip   = clientIP();
6379ea45836SChristopher Smith        $cip  = gethostsbyaddrs($ip);
638*68491db9SPhy        $name = isset($INFO) ? $INFO['userinfo']['name'] : '';
639*68491db9SPhy        $mail = isset($INFO) ? $INFO['userinfo']['mail'] : '';
6409ea45836SChristopher Smith
6419ea45836SChristopher Smith        $this->replacements['text'] = array(
6429ea45836SChristopher Smith            'DATE' => dformat(),
6439ea45836SChristopher Smith            'BROWSER' => $INPUT->server->str('HTTP_USER_AGENT'),
6449ea45836SChristopher Smith            'IPADDRESS' => $ip,
6459ea45836SChristopher Smith            'HOSTNAME' => $cip,
6469ea45836SChristopher Smith            'TITLE' => $conf['title'],
6479ea45836SChristopher Smith            'DOKUWIKIURL' => DOKU_URL,
6489ea45836SChristopher Smith            'USER' => $INPUT->server->str('REMOTE_USER'),
649*68491db9SPhy            'NAME' => $name,
650*68491db9SPhy            'MAIL' => $mail
6519ea45836SChristopher Smith        );
65264159a61SAndreas Gohr        $signature = str_replace(
65364159a61SAndreas Gohr            '@DOKUWIKIURL@',
65464159a61SAndreas Gohr            $this->replacements['text']['DOKUWIKIURL'],
65564159a61SAndreas Gohr            $lang['email_signature_text']
65664159a61SAndreas Gohr        );
657774514c9SGerrit Uitslag        $this->replacements['text']['EMAILSIGNATURE'] = "\n-- \n" . $signature . "\n";
6589ea45836SChristopher Smith
6599ea45836SChristopher Smith        $this->replacements['html'] = array(
6609ea45836SChristopher Smith            'DATE' => '<i>' . hsc(dformat()) . '</i>',
6619ea45836SChristopher Smith            'BROWSER' => hsc($INPUT->server->str('HTTP_USER_AGENT')),
6629ea45836SChristopher Smith            'IPADDRESS' => '<code>' . hsc($ip) . '</code>',
6639ea45836SChristopher Smith            'HOSTNAME' => '<code>' . hsc($cip) . '</code>',
6649ea45836SChristopher Smith            'TITLE' => hsc($conf['title']),
6659ea45836SChristopher Smith            'DOKUWIKIURL' => '<a href="' . DOKU_URL . '">' . DOKU_URL . '</a>',
6669ea45836SChristopher Smith            'USER' => hsc($INPUT->server->str('REMOTE_USER')),
667*68491db9SPhy            'NAME' => hsc($name),
668*68491db9SPhy            'MAIL' => '<a href="mailto:"' . hsc($mail) . '">' .
669*68491db9SPhy                hsc($mail) . '</a>'
6709ea45836SChristopher Smith        );
671774514c9SGerrit Uitslag        $signature = $lang['email_signature_text'];
672774514c9SGerrit Uitslag        if(!empty($lang['email_signature_html'])) {
673774514c9SGerrit Uitslag            $signature = $lang['email_signature_html'];
674774514c9SGerrit Uitslag        }
675774514c9SGerrit Uitslag        $signature = str_replace(
676774514c9SGerrit Uitslag            array(
677774514c9SGerrit Uitslag                '@DOKUWIKIURL@',
678774514c9SGerrit Uitslag                "\n"
679774514c9SGerrit Uitslag            ),
680774514c9SGerrit Uitslag            array(
681774514c9SGerrit Uitslag                $this->replacements['html']['DOKUWIKIURL'],
682774514c9SGerrit Uitslag                '<br />'
683774514c9SGerrit Uitslag            ),
684774514c9SGerrit Uitslag            $signature
685774514c9SGerrit Uitslag        );
686774514c9SGerrit Uitslag        $this->replacements['html']['EMAILSIGNATURE'] = $signature;
6879ea45836SChristopher Smith    }
6889ea45836SChristopher Smith
6899ea45836SChristopher Smith    /**
6901d045709SAndreas Gohr     * Send the mail
6911d045709SAndreas Gohr     *
6921d045709SAndreas Gohr     * Call this after all data was set
6931d045709SAndreas Gohr     *
69428d2ad80SAndreas Gohr     * @triggers MAIL_MESSAGE_SEND
6951d045709SAndreas Gohr     * @return bool true if the mail was successfully passed to the MTA
6961d045709SAndreas Gohr     */
6971d045709SAndreas Gohr    public function send() {
69828d2ad80SAndreas Gohr        $success = false;
699a36fc348SAndreas Gohr
70028d2ad80SAndreas Gohr        // prepare hook data
70128d2ad80SAndreas Gohr        $data = array(
70228d2ad80SAndreas Gohr            // pass the whole mail class to plugin
70328d2ad80SAndreas Gohr            'mail'    => $this,
70428d2ad80SAndreas Gohr            // pass references for backward compatibility
70528d2ad80SAndreas Gohr            'to'      => &$this->headers['To'],
70628d2ad80SAndreas Gohr            'cc'      => &$this->headers['Cc'],
70728d2ad80SAndreas Gohr            'bcc'     => &$this->headers['Bcc'],
70828d2ad80SAndreas Gohr            'from'    => &$this->headers['From'],
70928d2ad80SAndreas Gohr            'subject' => &$this->headers['Subject'],
71028d2ad80SAndreas Gohr            'body'    => &$this->text,
711a89c75afSAndreas Gohr            'params'  => &$this->sendparam,
71228d2ad80SAndreas Gohr            'headers' => '', // plugins shouldn't use this
71328d2ad80SAndreas Gohr            // signal if we mailed successfully to AFTER event
71428d2ad80SAndreas Gohr            'success' => &$success,
71528d2ad80SAndreas Gohr        );
71628d2ad80SAndreas Gohr
71728d2ad80SAndreas Gohr        // do our thing if BEFORE hook approves
718e1d9dcc8SAndreas Gohr        $evt = new Event('MAIL_MESSAGE_SEND', $data);
71928d2ad80SAndreas Gohr        if($evt->advise_before(true)) {
72028d2ad80SAndreas Gohr            // clean up before using the headers
721a36fc348SAndreas Gohr            $this->cleanHeaders();
722a36fc348SAndreas Gohr
7231d045709SAndreas Gohr            // any recipients?
7241d045709SAndreas Gohr            if(trim($this->headers['To']) === '' &&
7251d045709SAndreas Gohr                trim($this->headers['Cc']) === '' &&
726a89c75afSAndreas Gohr                trim($this->headers['Bcc']) === ''
727a89c75afSAndreas Gohr            ) return false;
7281d045709SAndreas Gohr
7291d045709SAndreas Gohr            // The To: header is special
7306be717dbSMichael Hamann            if(array_key_exists('To', $this->headers)) {
7316be717dbSMichael Hamann                $to = (string)$this->headers['To'];
7321d045709SAndreas Gohr                unset($this->headers['To']);
7331d045709SAndreas Gohr            } else {
7341d045709SAndreas Gohr                $to = '';
7351d045709SAndreas Gohr            }
7361d045709SAndreas Gohr
7371d045709SAndreas Gohr            // so is the subject
7386be717dbSMichael Hamann            if(array_key_exists('Subject', $this->headers)) {
7396be717dbSMichael Hamann                $subject = (string)$this->headers['Subject'];
7401d045709SAndreas Gohr                unset($this->headers['Subject']);
7411d045709SAndreas Gohr            } else {
7421d045709SAndreas Gohr                $subject = '';
7431d045709SAndreas Gohr            }
7441d045709SAndreas Gohr
7451d045709SAndreas Gohr            // make the body
7461d045709SAndreas Gohr            $body = $this->prepareBody();
7474c89a7f6SAndreas Gohr            if($body === false) return false;
7481d045709SAndreas Gohr
7491d045709SAndreas Gohr            // cook the headers
7501d045709SAndreas Gohr            $headers = $this->prepareHeaders();
75128d2ad80SAndreas Gohr            // add any headers set by legacy plugins
75228d2ad80SAndreas Gohr            if(trim($data['headers'])) {
75328d2ad80SAndreas Gohr                $headers .= MAILHEADER_EOL.trim($data['headers']);
75428d2ad80SAndreas Gohr            }
7551d045709SAndreas Gohr
7561d045709SAndreas Gohr            // send the thing
757749c0023SAndreas Gohr            if($this->sendparam === null) {
75828d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers);
7591d045709SAndreas Gohr            } else {
76028d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers, $this->sendparam);
7611d045709SAndreas Gohr            }
7621d045709SAndreas Gohr        }
76328d2ad80SAndreas Gohr        // any AFTER actions?
76428d2ad80SAndreas Gohr        $evt->advise_after();
76528d2ad80SAndreas Gohr        return $success;
76628d2ad80SAndreas Gohr    }
767bb01c27cSAndreas Gohr}
768