xref: /dokuwiki/inc/Mailer.class.php (revision 2b58f049453be0b5aad791487f173556c87f90dd)
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
14a89c75afSAndreas Gohr/**
15a89c75afSAndreas Gohr * Mail Handling
16a89c75afSAndreas Gohr */
17bb01c27cSAndreas Gohrclass Mailer {
18bb01c27cSAndreas Gohr
19f41c79d7SAndreas Gohr    protected $headers   = array();
20f41c79d7SAndreas Gohr    protected $attach    = array();
21f41c79d7SAndreas Gohr    protected $html      = '';
22f41c79d7SAndreas Gohr    protected $text      = '';
23bb01c27cSAndreas Gohr
24f41c79d7SAndreas Gohr    protected $boundary  = '';
25f41c79d7SAndreas Gohr    protected $partid    = '';
26f41c79d7SAndreas Gohr    protected $sendparam = null;
27bb01c27cSAndreas Gohr
28f41c79d7SAndreas Gohr    protected $allowhtml = true;
291d045709SAndreas Gohr
309ea45836SChristopher Smith    protected $replacements = array('text'=> array(), 'html' => array());
319ea45836SChristopher Smith
321d045709SAndreas Gohr    /**
331d045709SAndreas Gohr     * Constructor
341d045709SAndreas Gohr     *
359ea45836SChristopher Smith     * Initializes the boundary strings, part counters and token replacements
361d045709SAndreas Gohr     */
371d045709SAndreas Gohr    public function __construct() {
389f3eca0bSAndreas Gohr        global $conf;
39585bf44eSChristopher Smith        /* @var Input $INPUT */
40585bf44eSChristopher Smith        global $INPUT;
419f3eca0bSAndreas Gohr
429f3eca0bSAndreas Gohr        $server = parse_url(DOKU_URL, PHP_URL_HOST);
43749c0023SAndreas Gohr        if(strpos($server,'.') === false) $server .= '.localhost';
441d045709SAndreas Gohr
45749c0023SAndreas Gohr        $this->partid   = substr(md5(uniqid(mt_rand(), true)),0, 8).'@'.$server;
46749c0023SAndreas Gohr        $this->boundary = '__________'.md5(uniqid(mt_rand(), true));
479f3eca0bSAndreas Gohr
48749c0023SAndreas Gohr        $listid = implode('.', array_reverse(explode('/', DOKU_BASE))).$server;
499f3eca0bSAndreas Gohr        $listid = strtolower(trim($listid, '.'));
507c7659d2SPhilipp Specht        $messageid = uniqid(mt_rand(), true) . "@$server";
519f3eca0bSAndreas Gohr
522398a2b5SAndreas Gohr        $this->allowhtml = (bool)$conf['htmlmail'];
532398a2b5SAndreas Gohr
549f3eca0bSAndreas Gohr        // add some default headers for mailfiltering FS#2247
555f43dcf4SLukas Rademacher        if(!empty($conf['mailreturnpath'])) {
565f43dcf4SLukas Rademacher            $this->setHeader('Return-Path', $conf['mailreturnpath']);
575f43dcf4SLukas Rademacher        }
586a1f928fSAndreas Gohr        $this->setHeader('X-Mailer', 'DokuWiki');
59585bf44eSChristopher Smith        $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
609f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Title', $conf['title']);
619f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Server', $server);
629f3eca0bSAndreas Gohr        $this->setHeader('X-Auto-Response-Suppress', 'OOF');
639f3eca0bSAndreas Gohr        $this->setHeader('List-Id', $conf['title'].' <'.$listid.'>');
64d6e04b60SAndreas Gohr        $this->setHeader('Date', date('r'), false);
657c7659d2SPhilipp Specht        $this->setHeader('Message-Id', "<$messageid>");
669ea45836SChristopher Smith
679ea45836SChristopher Smith        $this->prepareTokenReplacements();
68bb01c27cSAndreas Gohr    }
69bb01c27cSAndreas Gohr
70bb01c27cSAndreas Gohr    /**
71bb01c27cSAndreas Gohr     * Attach a file
72bb01c27cSAndreas Gohr     *
73a89c75afSAndreas Gohr     * @param string $path  Path to the file to attach
74a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
75a89c75afSAndreas Gohr     * @param string $name The filename to use
76a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
77bb01c27cSAndreas Gohr     */
78bb01c27cSAndreas Gohr    public function attachFile($path, $mime, $name = '', $embed = '') {
79bb01c27cSAndreas Gohr        if(!$name) {
808cbc5ee8SAndreas Gohr            $name = \dokuwiki\Utf8\PhpString::basename($path);
81bb01c27cSAndreas Gohr        }
82bb01c27cSAndreas Gohr
83bb01c27cSAndreas Gohr        $this->attach[] = array(
84bb01c27cSAndreas Gohr            'data'  => file_get_contents($path),
85bb01c27cSAndreas Gohr            'mime'  => $mime,
86bb01c27cSAndreas Gohr            'name'  => $name,
87bb01c27cSAndreas Gohr            'embed' => $embed
88bb01c27cSAndreas Gohr        );
89bb01c27cSAndreas Gohr    }
90bb01c27cSAndreas Gohr
91bb01c27cSAndreas Gohr    /**
92bb01c27cSAndreas Gohr     * Attach a file
93bb01c27cSAndreas Gohr     *
94a89c75afSAndreas Gohr     * @param string $data  The file contents to attach
95a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
96a89c75afSAndreas Gohr     * @param string $name  The filename to use
97a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
98bb01c27cSAndreas Gohr     */
99bb01c27cSAndreas Gohr    public function attachContent($data, $mime, $name = '', $embed = '') {
100bb01c27cSAndreas Gohr        if(!$name) {
101a89c75afSAndreas Gohr            list(, $ext) = explode('/', $mime);
102bb01c27cSAndreas Gohr            $name = count($this->attach).".$ext";
103bb01c27cSAndreas Gohr        }
104bb01c27cSAndreas Gohr
105bb01c27cSAndreas Gohr        $this->attach[] = array(
106bb01c27cSAndreas Gohr            'data'  => $data,
107bb01c27cSAndreas Gohr            'mime'  => $mime,
108bb01c27cSAndreas Gohr            'name'  => $name,
109bb01c27cSAndreas Gohr            'embed' => $embed
110bb01c27cSAndreas Gohr        );
111bb01c27cSAndreas Gohr    }
112bb01c27cSAndreas Gohr
113bb01c27cSAndreas Gohr    /**
114850dbf1fSAndreas Gohr     * Callback function to automatically embed images referenced in HTML templates
11542ea7f44SGerrit Uitslag     *
11642ea7f44SGerrit Uitslag     * @param array $matches
11742ea7f44SGerrit Uitslag     * @return string placeholder
118850dbf1fSAndreas Gohr     */
119749c0023SAndreas Gohr    protected function autoEmbedCallBack($matches) {
120850dbf1fSAndreas Gohr        static $embeds = 0;
121850dbf1fSAndreas Gohr        $embeds++;
122850dbf1fSAndreas Gohr
123850dbf1fSAndreas Gohr        // get file and mime type
124850dbf1fSAndreas Gohr        $media = cleanID($matches[1]);
125a89c75afSAndreas Gohr        list(, $mime) = mimetype($media);
126850dbf1fSAndreas Gohr        $file = mediaFN($media);
127850dbf1fSAndreas Gohr        if(!file_exists($file)) return $matches[0]; //bad reference, keep as is
128850dbf1fSAndreas Gohr
129850dbf1fSAndreas Gohr        // attach it and set placeholder
130850dbf1fSAndreas Gohr        $this->attachFile($file, $mime, '', 'autoembed'.$embeds);
131850dbf1fSAndreas Gohr        return '%%autoembed'.$embeds.'%%';
132850dbf1fSAndreas Gohr    }
133850dbf1fSAndreas Gohr
134850dbf1fSAndreas Gohr    /**
1351d045709SAndreas Gohr     * Add an arbitrary header to the mail
1361d045709SAndreas Gohr     *
137a36fc348SAndreas Gohr     * If an empy value is passed, the header is removed
138a36fc348SAndreas Gohr     *
1391d045709SAndreas Gohr     * @param string $header the header name (no trailing colon!)
14059bc3b48SGerrit Uitslag     * @param string|string[] $value  the value of the header
1411d045709SAndreas Gohr     * @param bool   $clean  remove all non-ASCII chars and line feeds?
1421d045709SAndreas Gohr     */
1431d045709SAndreas Gohr    public function setHeader($header, $value, $clean = true) {
1449f3eca0bSAndreas Gohr        $header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamline casing
1451d045709SAndreas Gohr        if($clean) {
146578b2c23SAndreas Gohr            $header = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@]+/', '', $header);
147578b2c23SAndreas Gohr            $value  = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@<>]+/', '', $value);
1481d045709SAndreas Gohr        }
149a36fc348SAndreas Gohr
150a36fc348SAndreas Gohr        // empty value deletes
151b6c97c70SAndreas Gohr        if(is_array($value)){
152b6c97c70SAndreas Gohr            $value = array_map('trim', $value);
153b6c97c70SAndreas Gohr            $value = array_filter($value);
154b6c97c70SAndreas Gohr            if(!$value) $value = '';
155b6c97c70SAndreas Gohr        }else{
156a36fc348SAndreas Gohr            $value = trim($value);
157b6c97c70SAndreas Gohr        }
158a36fc348SAndreas Gohr        if($value === '') {
159a36fc348SAndreas Gohr            if(isset($this->headers[$header])) unset($this->headers[$header]);
160a36fc348SAndreas Gohr        } else {
1611d045709SAndreas Gohr            $this->headers[$header] = $value;
1621d045709SAndreas Gohr        }
163a36fc348SAndreas Gohr    }
1641d045709SAndreas Gohr
1651d045709SAndreas Gohr    /**
1661d045709SAndreas Gohr     * Set additional parameters to be passed to sendmail
1671d045709SAndreas Gohr     *
1681d045709SAndreas Gohr     * Whatever is set here is directly passed to PHP's mail() command as last
1691d045709SAndreas Gohr     * parameter. Depending on the PHP setup this might break mailing alltogether
17042ea7f44SGerrit Uitslag     *
17142ea7f44SGerrit Uitslag     * @param string $param
1721d045709SAndreas Gohr     */
1731d045709SAndreas Gohr    public function setParameters($param) {
1741d045709SAndreas Gohr        $this->sendparam = $param;
1751d045709SAndreas Gohr    }
1761d045709SAndreas Gohr
1771d045709SAndreas Gohr    /**
178abbf0890SAndreas Gohr     * Set the text and HTML body and apply replacements
179abbf0890SAndreas Gohr     *
180abbf0890SAndreas Gohr     * This function applies a whole bunch of default replacements in addition
18104dcb5b2SChristopher Smith     * to the ones specified as parameters
182abbf0890SAndreas Gohr     *
183abbf0890SAndreas Gohr     * If you pass the HTML part or HTML replacements yourself you have to make
184abbf0890SAndreas Gohr     * sure you encode all HTML special chars correctly
185abbf0890SAndreas Gohr     *
186abbf0890SAndreas Gohr     * @param string $text     plain text body
187abbf0890SAndreas Gohr     * @param array  $textrep  replacements to apply on the text part
18864159a61SAndreas Gohr     * @param array  $htmlrep  replacements to apply on the HTML part, null to use $textrep (urls wrapped in <a> tags)
18959bc3b48SGerrit Uitslag     * @param string $html     the HTML body, leave null to create it from $text
190f08086ecSAndreas Gohr     * @param bool   $wrap     wrap the HTML in the default header/Footer
191abbf0890SAndreas Gohr     */
192f08086ecSAndreas Gohr    public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) {
193585bf44eSChristopher Smith
19476efd6d0SAndreas Gohr        $htmlrep = (array)$htmlrep;
19576efd6d0SAndreas Gohr        $textrep = (array)$textrep;
196abbf0890SAndreas Gohr
197abbf0890SAndreas Gohr        // create HTML from text if not given
198749c0023SAndreas Gohr        if($html === null) {
199ba9c057bSAndreas Gohr            $html = $text;
200ba9c057bSAndreas Gohr            $html = hsc($html);
201ba2c2f17Sfurun            $html = preg_replace('/^----+$/m', '<hr >', $html);
202ba9c057bSAndreas Gohr            $html = nl2br($html);
203abbf0890SAndreas Gohr        }
204f08086ecSAndreas Gohr        if($wrap) {
205749c0023SAndreas Gohr            $wrapper = rawLocale('mailwrap', 'html');
2063819cafdSfurun            $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
2073819cafdSfurun            $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@
208749c0023SAndreas Gohr            $html = str_replace('@HTMLBODY@', $html, $wrapper);
209f08086ecSAndreas Gohr        }
210f08086ecSAndreas Gohr
2113819cafdSfurun        if(strpos($text, '@EMAILSIGNATURE@') === false) {
2129ea45836SChristopher Smith            $text .= '@EMAILSIGNATURE@';
2133819cafdSfurun        }
214ba2c2f17Sfurun
21576efd6d0SAndreas Gohr        // copy over all replacements missing for HTML (autolink URLs)
21676efd6d0SAndreas Gohr        foreach($textrep as $key => $value) {
21776efd6d0SAndreas Gohr            if(isset($htmlrep[$key])) continue;
2183e7e6067SKlap-in            if(media_isexternal($value)) {
21976efd6d0SAndreas Gohr                $htmlrep[$key] = '<a href="'.hsc($value).'">'.hsc($value).'</a>';
22076efd6d0SAndreas Gohr            } else {
22176efd6d0SAndreas Gohr                $htmlrep[$key] = hsc($value);
22276efd6d0SAndreas Gohr            }
223abbf0890SAndreas Gohr        }
224abbf0890SAndreas Gohr
225850dbf1fSAndreas Gohr        // embed media from templates
226a89c75afSAndreas Gohr        $html = preg_replace_callback(
227a89c75afSAndreas Gohr            '/@MEDIA\(([^\)]+)\)@/',
228749c0023SAndreas Gohr            array($this, 'autoEmbedCallBack'), $html
229a89c75afSAndreas Gohr        );
230850dbf1fSAndreas Gohr
2319ea45836SChristopher Smith        // add default token replacements
2329ea45836SChristopher Smith        $trep = array_merge($this->replacements['text'], (array)$textrep);
2339ea45836SChristopher Smith        $hrep = array_merge($this->replacements['html'], (array)$htmlrep);
234abbf0890SAndreas Gohr
235abbf0890SAndreas Gohr        // Apply replacements
236abbf0890SAndreas Gohr        foreach($trep as $key => $substitution) {
237abbf0890SAndreas Gohr            $text = str_replace('@'.strtoupper($key).'@', $substitution, $text);
238abbf0890SAndreas Gohr        }
239abbf0890SAndreas Gohr        foreach($hrep as $key => $substitution) {
240abbf0890SAndreas Gohr            $html = str_replace('@'.strtoupper($key).'@', $substitution, $html);
241abbf0890SAndreas Gohr        }
242abbf0890SAndreas Gohr
243abbf0890SAndreas Gohr        $this->setHTML($html);
244abbf0890SAndreas Gohr        $this->setText($text);
245abbf0890SAndreas Gohr    }
246abbf0890SAndreas Gohr
247abbf0890SAndreas Gohr    /**
248bb01c27cSAndreas Gohr     * Set the HTML part of the mail
249bb01c27cSAndreas Gohr     *
250bb01c27cSAndreas Gohr     * Placeholders can be used to reference embedded attachments
251abbf0890SAndreas Gohr     *
252abbf0890SAndreas Gohr     * You probably want to use setBody() instead
25342ea7f44SGerrit Uitslag     *
25442ea7f44SGerrit Uitslag     * @param string $html
255bb01c27cSAndreas Gohr     */
2561d045709SAndreas Gohr    public function setHTML($html) {
257bb01c27cSAndreas Gohr        $this->html = $html;
258bb01c27cSAndreas Gohr    }
259bb01c27cSAndreas Gohr
260bb01c27cSAndreas Gohr    /**
261bb01c27cSAndreas Gohr     * Set the plain text part of the mail
262abbf0890SAndreas Gohr     *
263abbf0890SAndreas Gohr     * You probably want to use setBody() instead
26442ea7f44SGerrit Uitslag     *
26542ea7f44SGerrit Uitslag     * @param string $text
266bb01c27cSAndreas Gohr     */
2671d045709SAndreas Gohr    public function setText($text) {
268bb01c27cSAndreas Gohr        $this->text = $text;
269bb01c27cSAndreas Gohr    }
270bb01c27cSAndreas Gohr
271bb01c27cSAndreas Gohr    /**
272a36fc348SAndreas Gohr     * Add the To: recipients
273a36fc348SAndreas Gohr     *
2748c253612SGerrit Uitslag     * @see cleanAddress
27559bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
276a36fc348SAndreas Gohr     */
277a36fc348SAndreas Gohr    public function to($address) {
278a36fc348SAndreas Gohr        $this->setHeader('To', $address, false);
279a36fc348SAndreas Gohr    }
280a36fc348SAndreas Gohr
281a36fc348SAndreas Gohr    /**
282a36fc348SAndreas Gohr     * Add the Cc: recipients
283a36fc348SAndreas Gohr     *
2848c253612SGerrit Uitslag     * @see cleanAddress
28559bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
286a36fc348SAndreas Gohr     */
287a36fc348SAndreas Gohr    public function cc($address) {
288a36fc348SAndreas Gohr        $this->setHeader('Cc', $address, false);
289a36fc348SAndreas Gohr    }
290a36fc348SAndreas Gohr
291a36fc348SAndreas Gohr    /**
292a36fc348SAndreas Gohr     * Add the Bcc: recipients
293a36fc348SAndreas Gohr     *
2948c253612SGerrit Uitslag     * @see cleanAddress
29559bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
296a36fc348SAndreas Gohr     */
297a36fc348SAndreas Gohr    public function bcc($address) {
298a36fc348SAndreas Gohr        $this->setHeader('Bcc', $address, false);
299a36fc348SAndreas Gohr    }
300a36fc348SAndreas Gohr
301a36fc348SAndreas Gohr    /**
302a36fc348SAndreas Gohr     * Add the From: address
303a36fc348SAndreas Gohr     *
304a36fc348SAndreas Gohr     * This is set to $conf['mailfrom'] when not specified so you shouldn't need
305a36fc348SAndreas Gohr     * to call this function
306a36fc348SAndreas Gohr     *
3078c253612SGerrit Uitslag     * @see cleanAddress
308a36fc348SAndreas Gohr     * @param string  $address from address
309a36fc348SAndreas Gohr     */
310a36fc348SAndreas Gohr    public function from($address) {
311a36fc348SAndreas Gohr        $this->setHeader('From', $address, false);
312a36fc348SAndreas Gohr    }
313a36fc348SAndreas Gohr
314a36fc348SAndreas Gohr    /**
315a36fc348SAndreas Gohr     * Add the mail's Subject: header
316a36fc348SAndreas Gohr     *
317a36fc348SAndreas Gohr     * @param string $subject the mail subject
318a36fc348SAndreas Gohr     */
319a36fc348SAndreas Gohr    public function subject($subject) {
320a36fc348SAndreas Gohr        $this->headers['Subject'] = $subject;
321a36fc348SAndreas Gohr    }
322a36fc348SAndreas Gohr
323a36fc348SAndreas Gohr    /**
324102cdbd7SLarsGit223     * Return a clean name which can be safely used in mail address
325102cdbd7SLarsGit223     * fields. That means the name will be enclosed in '"' if it includes
326102cdbd7SLarsGit223     * a '"' or a ','. Also a '"' will be escaped as '\"'.
327102cdbd7SLarsGit223     *
328102cdbd7SLarsGit223     * @param string $name the name to clean-up
329102cdbd7SLarsGit223     * @see cleanAddress
330102cdbd7SLarsGit223     */
331102cdbd7SLarsGit223    public function getCleanName($name) {
332*2b58f049SAndreas Gohr        $name = trim($name, " \t\"");
333102cdbd7SLarsGit223        $name = str_replace('"', '\"', $name, $count);
334102cdbd7SLarsGit223        if ($count > 0 || strpos($name, ',') !== false) {
335102cdbd7SLarsGit223            $name = '"'.$name.'"';
336102cdbd7SLarsGit223        }
337102cdbd7SLarsGit223        return $name;
338102cdbd7SLarsGit223    }
339102cdbd7SLarsGit223
340102cdbd7SLarsGit223    /**
3411d045709SAndreas Gohr     * Sets an email address header with correct encoding
342bb01c27cSAndreas Gohr     *
343bb01c27cSAndreas Gohr     * Unicode characters will be deaccented and encoded base64
344bb01c27cSAndreas Gohr     * for headers. Addresses may not contain Non-ASCII data!
345bb01c27cSAndreas Gohr     *
346102cdbd7SLarsGit223     * If @$addresses is a string then it will be split into multiple
347102cdbd7SLarsGit223     * addresses. Addresses must be separated by a comma. If the display
348102cdbd7SLarsGit223     * name includes a comma then it MUST be properly enclosed by '"' to
349102cdbd7SLarsGit223     * prevent spliting at the wrong point.
350102cdbd7SLarsGit223     *
351bb01c27cSAndreas Gohr     * Example:
3528c253612SGerrit Uitslag     *   cc("föö <foo@bar.com>, me@somewhere.com","TBcc");
353102cdbd7SLarsGit223     *   to("foo, Dr." <foo@bar.com>, me@somewhere.com");
354bb01c27cSAndreas Gohr     *
35542ea7f44SGerrit Uitslag     * @param string|string[]  $addresses Multiple adresses separated by commas or as array
35642ea7f44SGerrit Uitslag     * @return false|string  the prepared header (can contain multiple lines)
357bb01c27cSAndreas Gohr     */
358b6c97c70SAndreas Gohr    public function cleanAddress($addresses) {
359bb01c27cSAndreas Gohr        $headers = '';
360b6c97c70SAndreas Gohr        if(!is_array($addresses)){
361d31a1599SLarsGit223            $count = preg_match_all('/\s*(?:("[^"]*"[^,]+),*)|([^,]+)\s*,*/', $addresses, $matches, PREG_SET_ORDER);
362102cdbd7SLarsGit223            $addresses = array();
363743792d0SLarsGit223            if ($count !== false && is_array($matches)) {
364102cdbd7SLarsGit223                foreach ($matches as $match) {
36510da1f74SAndreas Gohr                    array_push($addresses, rtrim($match[0], ','));
366102cdbd7SLarsGit223                }
367b6c97c70SAndreas Gohr            }
368b6c97c70SAndreas Gohr        }
369b6c97c70SAndreas Gohr
370b6c97c70SAndreas Gohr        foreach($addresses as $part) {
371b6c97c70SAndreas Gohr            $part = preg_replace('/[\r\n\0]+/', ' ', $part); // remove attack vectors
372bb01c27cSAndreas Gohr            $part = trim($part);
373bb01c27cSAndreas Gohr
374bb01c27cSAndreas Gohr            // parse address
375bb01c27cSAndreas Gohr            if(preg_match('#(.*?)<(.*?)>#', $part, $matches)) {
376bb01c27cSAndreas Gohr                $text = trim($matches[1]);
377bb01c27cSAndreas Gohr                $addr = $matches[2];
378bb01c27cSAndreas Gohr            } else {
37910da1f74SAndreas Gohr                $text = '';
380bb01c27cSAndreas Gohr                $addr = $part;
381bb01c27cSAndreas Gohr            }
382bb01c27cSAndreas Gohr            // skip empty ones
383bb01c27cSAndreas Gohr            if(empty($addr)) {
384bb01c27cSAndreas Gohr                continue;
385bb01c27cSAndreas Gohr            }
386bb01c27cSAndreas Gohr
387bb01c27cSAndreas Gohr            // FIXME: is there a way to encode the localpart of a emailaddress?
3888cbc5ee8SAndreas Gohr            if(!\dokuwiki\Utf8\Clean::isASCII($addr)) {
3894772cf38SAndreas Gohr                msg(hsc("E-Mail address <$addr> is not ASCII"), -1, __LINE__, __FILE__, MSG_ADMINS_ONLY);
390bb01c27cSAndreas Gohr                continue;
391bb01c27cSAndreas Gohr            }
392bb01c27cSAndreas Gohr
39364d23c16SAndreas Gohr            if(!mail_isvalid($addr)) {
3944772cf38SAndreas Gohr                msg(hsc("E-Mail address <$addr> is not valid"), -1, __LINE__, __FILE__, MSG_ADMINS_ONLY);
395bb01c27cSAndreas Gohr                continue;
396bb01c27cSAndreas Gohr            }
397bb01c27cSAndreas Gohr
398bb01c27cSAndreas Gohr            // text was given
39930085ef3SYurii K            if(!empty($text) && !isWindows()) { // No named recipients for To: in Windows (see FS#652)
400bb01c27cSAndreas Gohr                // add address quotes
401bb01c27cSAndreas Gohr                $addr = "<$addr>";
402bb01c27cSAndreas Gohr
403bb01c27cSAndreas Gohr                if(defined('MAILHEADER_ASCIIONLY')) {
4048cbc5ee8SAndreas Gohr                    $text = \dokuwiki\Utf8\Clean::deaccent($text);
4058cbc5ee8SAndreas Gohr                    $text = \dokuwiki\Utf8\Clean::strip($text);
406bb01c27cSAndreas Gohr                }
407bb01c27cSAndreas Gohr
4088cbc5ee8SAndreas Gohr                if(strpos($text, ',') !== false || !\dokuwiki\Utf8\Clean::isASCII($text)) {
409bb01c27cSAndreas Gohr                    $text = '=?UTF-8?B?'.base64_encode($text).'?=';
410bb01c27cSAndreas Gohr                }
411bb01c27cSAndreas Gohr            } else {
412bb01c27cSAndreas Gohr                $text = '';
413bb01c27cSAndreas Gohr            }
414bb01c27cSAndreas Gohr
415bb01c27cSAndreas Gohr            // add to header comma seperated
416bb01c27cSAndreas Gohr            if($headers != '') {
417bb01c27cSAndreas Gohr                $headers .= ', ';
418bb01c27cSAndreas Gohr            }
419bb01c27cSAndreas Gohr            $headers .= $text.' '.$addr;
420bb01c27cSAndreas Gohr        }
421bb01c27cSAndreas Gohr
422b6c97c70SAndreas Gohr        $headers = trim($headers);
423bb01c27cSAndreas Gohr        if(empty($headers)) return false;
424bb01c27cSAndreas Gohr
425bb01c27cSAndreas Gohr        return $headers;
426bb01c27cSAndreas Gohr    }
427bb01c27cSAndreas Gohr
428bb01c27cSAndreas Gohr
429bb01c27cSAndreas Gohr    /**
430bb01c27cSAndreas Gohr     * Prepare the mime multiparts for all attachments
431bb01c27cSAndreas Gohr     *
432bb01c27cSAndreas Gohr     * Replaces placeholders in the HTML with the correct CIDs
43342ea7f44SGerrit Uitslag     *
43442ea7f44SGerrit Uitslag     * @return string mime multiparts
435bb01c27cSAndreas Gohr     */
436bb01c27cSAndreas Gohr    protected function prepareAttachments() {
437bb01c27cSAndreas Gohr        $mime = '';
438bb01c27cSAndreas Gohr        $part = 1;
439bb01c27cSAndreas Gohr        // embedded attachments
440bb01c27cSAndreas Gohr        foreach($this->attach as $media) {
441ce9d2cc8SAndreas Gohr            $media['name'] = str_replace(':', '_', cleanID($media['name'], true));
442ce9d2cc8SAndreas Gohr
443bb01c27cSAndreas Gohr            // create content id
444bb01c27cSAndreas Gohr            $cid = 'part'.$part.'.'.$this->partid;
445bb01c27cSAndreas Gohr
446bb01c27cSAndreas Gohr            // replace wildcards
447bb01c27cSAndreas Gohr            if($media['embed']) {
448bb01c27cSAndreas Gohr                $this->html = str_replace('%%'.$media['embed'].'%%', 'cid:'.$cid, $this->html);
449bb01c27cSAndreas Gohr            }
450bb01c27cSAndreas Gohr
451bb01c27cSAndreas Gohr            $mime .= '--'.$this->boundary.MAILHEADER_EOL;
4521d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Type', $media['mime'].'; id="'.$cid.'"');
4531d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-Transfer-Encoding', 'base64');
4541d8036c2SAndreas Gohr            $mime .= $this->wrappedHeaderLine('Content-ID',"<$cid>");
455bb01c27cSAndreas Gohr            if($media['embed']) {
4561d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'inline; filename='.$media['name']);
457bb01c27cSAndreas Gohr            } else {
4581d8036c2SAndreas Gohr                $mime .= $this->wrappedHeaderLine('Content-Disposition', 'attachment; filename='.$media['name']);
459bb01c27cSAndreas Gohr            }
460bb01c27cSAndreas Gohr            $mime .= MAILHEADER_EOL; //end of headers
461bb01c27cSAndreas Gohr            $mime .= chunk_split(base64_encode($media['data']), 74, MAILHEADER_EOL);
462bb01c27cSAndreas Gohr
463bb01c27cSAndreas Gohr            $part++;
464bb01c27cSAndreas Gohr        }
465bb01c27cSAndreas Gohr        return $mime;
466bb01c27cSAndreas Gohr    }
467bb01c27cSAndreas Gohr
4681d045709SAndreas Gohr    /**
4691d045709SAndreas Gohr     * Build the body and handles multi part mails
4701d045709SAndreas Gohr     *
4711d045709SAndreas Gohr     * Needs to be called before prepareHeaders!
4721d045709SAndreas Gohr     *
4731d045709SAndreas Gohr     * @return string the prepared mail body, false on errors
4741d045709SAndreas Gohr     */
4751d045709SAndreas Gohr    protected function prepareBody() {
4761d045709SAndreas Gohr
4772398a2b5SAndreas Gohr        // no HTML mails allowed? remove HTML body
4782398a2b5SAndreas Gohr        if(!$this->allowhtml) {
4792398a2b5SAndreas Gohr            $this->html = '';
4802398a2b5SAndreas Gohr        }
4812398a2b5SAndreas Gohr
482bb01c27cSAndreas Gohr        // check for body
483bb01c27cSAndreas Gohr        if(!$this->text && !$this->html) {
484bb01c27cSAndreas Gohr            return false;
485bb01c27cSAndreas Gohr        }
486bb01c27cSAndreas Gohr
487bb01c27cSAndreas Gohr        // add general headers
488bb01c27cSAndreas Gohr        $this->headers['MIME-Version'] = '1.0';
489bb01c27cSAndreas Gohr
4901d045709SAndreas Gohr        $body = '';
4911d045709SAndreas Gohr
492bb01c27cSAndreas Gohr        if(!$this->html && !count($this->attach)) { // we can send a simple single part message
493bb01c27cSAndreas Gohr            $this->headers['Content-Type']              = 'text/plain; charset=UTF-8';
494bb01c27cSAndreas Gohr            $this->headers['Content-Transfer-Encoding'] = 'base64';
495be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
496bb01c27cSAndreas Gohr        } else { // multi part it is
4971d045709SAndreas Gohr            $body .= "This is a multi-part message in MIME format.".MAILHEADER_EOL;
498bb01c27cSAndreas Gohr
499bb01c27cSAndreas Gohr            // prepare the attachments
500bb01c27cSAndreas Gohr            $attachments = $this->prepareAttachments();
501bb01c27cSAndreas Gohr
502bb01c27cSAndreas Gohr            // do we have alternative text content?
503bb01c27cSAndreas Gohr            if($this->text && $this->html) {
504a36fc348SAndreas Gohr                $this->headers['Content-Type'] = 'multipart/alternative;'.MAILHEADER_EOL.
505a36fc348SAndreas Gohr                    '  boundary="'.$this->boundary.'XX"';
506bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
5071d045709SAndreas Gohr                $body .= 'Content-Type: text/plain; charset=UTF-8'.MAILHEADER_EOL;
5081d045709SAndreas Gohr                $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
509bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
510be3cc6abSAndreas Gohr                $body .= chunk_split(base64_encode($this->text), 72, MAILHEADER_EOL);
511bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX'.MAILHEADER_EOL;
512a36fc348SAndreas Gohr                $body .= 'Content-Type: multipart/related;'.MAILHEADER_EOL.
513d6e04b60SAndreas Gohr                    '  boundary="'.$this->boundary.'";'.MAILHEADER_EOL.
514d6e04b60SAndreas Gohr                    '  type="text/html"'.MAILHEADER_EOL;
515bb01c27cSAndreas Gohr                $body .= MAILHEADER_EOL;
516bb01c27cSAndreas Gohr            }
517bb01c27cSAndreas Gohr
5181d045709SAndreas Gohr            $body .= '--'.$this->boundary.MAILHEADER_EOL;
5191d045709SAndreas Gohr            $body .= 'Content-Type: text/html; charset=UTF-8'.MAILHEADER_EOL;
5201d045709SAndreas Gohr            $body .= 'Content-Transfer-Encoding: base64'.MAILHEADER_EOL;
521bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
522be3cc6abSAndreas Gohr            $body .= chunk_split(base64_encode($this->html), 72, MAILHEADER_EOL);
523bb01c27cSAndreas Gohr            $body .= MAILHEADER_EOL;
524bb01c27cSAndreas Gohr            $body .= $attachments;
525bb01c27cSAndreas Gohr            $body .= '--'.$this->boundary.'--'.MAILHEADER_EOL;
526bb01c27cSAndreas Gohr
527bb01c27cSAndreas Gohr            // close open multipart/alternative boundary
528bb01c27cSAndreas Gohr            if($this->text && $this->html) {
529bb01c27cSAndreas Gohr                $body .= '--'.$this->boundary.'XX--'.MAILHEADER_EOL;
530bb01c27cSAndreas Gohr            }
531bb01c27cSAndreas Gohr        }
532bb01c27cSAndreas Gohr
533bb01c27cSAndreas Gohr        return $body;
534bb01c27cSAndreas Gohr    }
535bb01c27cSAndreas Gohr
536bb01c27cSAndreas Gohr    /**
537a36fc348SAndreas Gohr     * Cleanup and encode the headers array
538a36fc348SAndreas Gohr     */
539a36fc348SAndreas Gohr    protected function cleanHeaders() {
540a36fc348SAndreas Gohr        global $conf;
541a36fc348SAndreas Gohr
542a36fc348SAndreas Gohr        // clean up addresses
543a36fc348SAndreas Gohr        if(empty($this->headers['From'])) $this->from($conf['mailfrom']);
544acbf061cSGerrit Uitslag        $addrs = array('To', 'From', 'Cc', 'Bcc', 'Reply-To', 'Sender');
545a36fc348SAndreas Gohr        foreach($addrs as $addr) {
546a36fc348SAndreas Gohr            if(isset($this->headers[$addr])) {
547a36fc348SAndreas Gohr                $this->headers[$addr] = $this->cleanAddress($this->headers[$addr]);
548a36fc348SAndreas Gohr            }
549a36fc348SAndreas Gohr        }
550a36fc348SAndreas Gohr
55145992a63SAndreas Gohr        if(isset($this->headers['Subject'])) {
552a36fc348SAndreas Gohr            // add prefix to subject
55354f30755SAndreas Gohr            if(empty($conf['mailprefix'])) {
5548cbc5ee8SAndreas Gohr                if(\dokuwiki\Utf8\PhpString::strlen($conf['title']) < 20) {
55554f30755SAndreas Gohr                    $prefix = '['.$conf['title'].']';
55654f30755SAndreas Gohr                } else {
5578cbc5ee8SAndreas Gohr                    $prefix = '['.\dokuwiki\Utf8\PhpString::substr($conf['title'], 0, 20).'...]';
5588a215f09SAndreas Gohr                }
5598a215f09SAndreas Gohr            } else {
560a36fc348SAndreas Gohr                $prefix = '['.$conf['mailprefix'].']';
56154f30755SAndreas Gohr            }
562a36fc348SAndreas Gohr            $len = strlen($prefix);
56345992a63SAndreas Gohr            if(substr($this->headers['Subject'], 0, $len) != $prefix) {
56445992a63SAndreas Gohr                $this->headers['Subject'] = $prefix.' '.$this->headers['Subject'];
565a36fc348SAndreas Gohr            }
566a36fc348SAndreas Gohr
567a36fc348SAndreas Gohr            // encode subject
568a36fc348SAndreas Gohr            if(defined('MAILHEADER_ASCIIONLY')) {
5698cbc5ee8SAndreas Gohr                $this->headers['Subject'] = \dokuwiki\Utf8\Clean::deaccent($this->headers['Subject']);
5708cbc5ee8SAndreas Gohr                $this->headers['Subject'] = \dokuwiki\Utf8\Clean::strip($this->headers['Subject']);
571a36fc348SAndreas Gohr            }
5728cbc5ee8SAndreas Gohr            if(!\dokuwiki\Utf8\Clean::isASCII($this->headers['Subject'])) {
57345992a63SAndreas Gohr                $this->headers['Subject'] = '=?UTF-8?B?'.base64_encode($this->headers['Subject']).'?=';
574a36fc348SAndreas Gohr            }
575a36fc348SAndreas Gohr        }
576a36fc348SAndreas Gohr
577a36fc348SAndreas Gohr    }
5781d8036c2SAndreas Gohr
5791d8036c2SAndreas Gohr    /**
5801d8036c2SAndreas Gohr     * Returns a complete, EOL terminated header line, wraps it if necessary
5811d8036c2SAndreas Gohr     *
58242ea7f44SGerrit Uitslag     * @param string $key
58342ea7f44SGerrit Uitslag     * @param string $val
58442ea7f44SGerrit Uitslag     * @return string line
5851d8036c2SAndreas Gohr     */
5861d8036c2SAndreas Gohr    protected function wrappedHeaderLine($key, $val){
5871d8036c2SAndreas Gohr        return wordwrap("$key: $val", 78, MAILHEADER_EOL.'  ').MAILHEADER_EOL;
588a36fc348SAndreas Gohr    }
589a36fc348SAndreas Gohr
590a36fc348SAndreas Gohr    /**
591bb01c27cSAndreas Gohr     * Create a string from the headers array
5921d045709SAndreas Gohr     *
5931d045709SAndreas Gohr     * @returns string the headers
594bb01c27cSAndreas Gohr     */
595bb01c27cSAndreas Gohr    protected function prepareHeaders() {
596bb01c27cSAndreas Gohr        $headers = '';
597bb01c27cSAndreas Gohr        foreach($this->headers as $key => $val) {
598749c0023SAndreas Gohr            if ($val === '' || $val === null) continue;
5991d8036c2SAndreas Gohr            $headers .= $this->wrappedHeaderLine($key, $val);
600bb01c27cSAndreas Gohr        }
601bb01c27cSAndreas Gohr        return $headers;
602bb01c27cSAndreas Gohr    }
603bb01c27cSAndreas Gohr
604bb01c27cSAndreas Gohr    /**
605bb01c27cSAndreas Gohr     * return a full email with all headers
606bb01c27cSAndreas Gohr     *
6071d045709SAndreas Gohr     * This is mainly intended for debugging and testing but could also be
6081d045709SAndreas Gohr     * used for MHT exports
6091d045709SAndreas Gohr     *
6101d045709SAndreas Gohr     * @return string the mail, false on errors
611bb01c27cSAndreas Gohr     */
612bb01c27cSAndreas Gohr    public function dump() {
613a36fc348SAndreas Gohr        $this->cleanHeaders();
614bb01c27cSAndreas Gohr        $body = $this->prepareBody();
6154d18e936SAndreas Gohr        if($body === false) return false;
6161d045709SAndreas Gohr        $headers = $this->prepareHeaders();
617bb01c27cSAndreas Gohr
618bb01c27cSAndreas Gohr        return $headers.MAILHEADER_EOL.$body;
619bb01c27cSAndreas Gohr    }
6201d045709SAndreas Gohr
6211d045709SAndreas Gohr    /**
6229ea45836SChristopher Smith     * Prepare default token replacement strings
6239ea45836SChristopher Smith     *
6249ea45836SChristopher Smith     * Populates the '$replacements' property.
6259ea45836SChristopher Smith     * Should be called by the class constructor
6269ea45836SChristopher Smith     */
6279ea45836SChristopher Smith    protected function prepareTokenReplacements() {
6289ea45836SChristopher Smith        global $INFO;
6299ea45836SChristopher Smith        global $conf;
6309ea45836SChristopher Smith        /* @var Input $INPUT */
6319ea45836SChristopher Smith        global $INPUT;
6329ea45836SChristopher Smith        global $lang;
6339ea45836SChristopher Smith
6349ea45836SChristopher Smith        $ip   = clientIP();
6359ea45836SChristopher Smith        $cip  = gethostsbyaddrs($ip);
6368fa268b3SAndreas Gohr        $name = $INFO['userinfo']['name'] ?? '';
6378fa268b3SAndreas Gohr        $mail = $INFO['userinfo']['mail'] ?? '';
6389ea45836SChristopher Smith
6399ea45836SChristopher Smith        $this->replacements['text'] = array(
6409ea45836SChristopher Smith            'DATE' => dformat(),
6419ea45836SChristopher Smith            'BROWSER' => $INPUT->server->str('HTTP_USER_AGENT'),
6429ea45836SChristopher Smith            'IPADDRESS' => $ip,
6439ea45836SChristopher Smith            'HOSTNAME' => $cip,
6449ea45836SChristopher Smith            'TITLE' => $conf['title'],
6459ea45836SChristopher Smith            'DOKUWIKIURL' => DOKU_URL,
6469ea45836SChristopher Smith            'USER' => $INPUT->server->str('REMOTE_USER'),
64768491db9SPhy            'NAME' => $name,
64868491db9SPhy            'MAIL' => $mail
6499ea45836SChristopher Smith        );
65064159a61SAndreas Gohr        $signature = str_replace(
65164159a61SAndreas Gohr            '@DOKUWIKIURL@',
65264159a61SAndreas Gohr            $this->replacements['text']['DOKUWIKIURL'],
65364159a61SAndreas Gohr            $lang['email_signature_text']
65464159a61SAndreas Gohr        );
655774514c9SGerrit Uitslag        $this->replacements['text']['EMAILSIGNATURE'] = "\n-- \n" . $signature . "\n";
6569ea45836SChristopher Smith
6579ea45836SChristopher Smith        $this->replacements['html'] = array(
6589ea45836SChristopher Smith            'DATE' => '<i>' . hsc(dformat()) . '</i>',
6599ea45836SChristopher Smith            'BROWSER' => hsc($INPUT->server->str('HTTP_USER_AGENT')),
6609ea45836SChristopher Smith            'IPADDRESS' => '<code>' . hsc($ip) . '</code>',
6619ea45836SChristopher Smith            'HOSTNAME' => '<code>' . hsc($cip) . '</code>',
6629ea45836SChristopher Smith            'TITLE' => hsc($conf['title']),
6639ea45836SChristopher Smith            'DOKUWIKIURL' => '<a href="' . DOKU_URL . '">' . DOKU_URL . '</a>',
6649ea45836SChristopher Smith            'USER' => hsc($INPUT->server->str('REMOTE_USER')),
66568491db9SPhy            'NAME' => hsc($name),
66668491db9SPhy            'MAIL' => '<a href="mailto:"' . hsc($mail) . '">' .
66768491db9SPhy                hsc($mail) . '</a>'
6689ea45836SChristopher Smith        );
669774514c9SGerrit Uitslag        $signature = $lang['email_signature_text'];
670774514c9SGerrit Uitslag        if(!empty($lang['email_signature_html'])) {
671774514c9SGerrit Uitslag            $signature = $lang['email_signature_html'];
672774514c9SGerrit Uitslag        }
673774514c9SGerrit Uitslag        $signature = str_replace(
674774514c9SGerrit Uitslag            array(
675774514c9SGerrit Uitslag                '@DOKUWIKIURL@',
676774514c9SGerrit Uitslag                "\n"
677774514c9SGerrit Uitslag            ),
678774514c9SGerrit Uitslag            array(
679774514c9SGerrit Uitslag                $this->replacements['html']['DOKUWIKIURL'],
680774514c9SGerrit Uitslag                '<br />'
681774514c9SGerrit Uitslag            ),
682774514c9SGerrit Uitslag            $signature
683774514c9SGerrit Uitslag        );
684774514c9SGerrit Uitslag        $this->replacements['html']['EMAILSIGNATURE'] = $signature;
6859ea45836SChristopher Smith    }
6869ea45836SChristopher Smith
6879ea45836SChristopher Smith    /**
6881d045709SAndreas Gohr     * Send the mail
6891d045709SAndreas Gohr     *
6901d045709SAndreas Gohr     * Call this after all data was set
6911d045709SAndreas Gohr     *
69228d2ad80SAndreas Gohr     * @triggers MAIL_MESSAGE_SEND
6931d045709SAndreas Gohr     * @return bool true if the mail was successfully passed to the MTA
6941d045709SAndreas Gohr     */
6951d045709SAndreas Gohr    public function send() {
6963f6872b1SMyron Turner        global $lang;
69728d2ad80SAndreas Gohr        $success = false;
698a36fc348SAndreas Gohr
69928d2ad80SAndreas Gohr        // prepare hook data
70028d2ad80SAndreas Gohr        $data = array(
70128d2ad80SAndreas Gohr            // pass the whole mail class to plugin
70228d2ad80SAndreas Gohr            'mail'    => $this,
70328d2ad80SAndreas Gohr            // pass references for backward compatibility
70428d2ad80SAndreas Gohr            'to'      => &$this->headers['To'],
70528d2ad80SAndreas Gohr            'cc'      => &$this->headers['Cc'],
70628d2ad80SAndreas Gohr            'bcc'     => &$this->headers['Bcc'],
70728d2ad80SAndreas Gohr            'from'    => &$this->headers['From'],
70828d2ad80SAndreas Gohr            'subject' => &$this->headers['Subject'],
70928d2ad80SAndreas Gohr            'body'    => &$this->text,
710a89c75afSAndreas Gohr            'params'  => &$this->sendparam,
71128d2ad80SAndreas Gohr            'headers' => '', // plugins shouldn't use this
71228d2ad80SAndreas Gohr            // signal if we mailed successfully to AFTER event
71328d2ad80SAndreas Gohr            'success' => &$success,
71428d2ad80SAndreas Gohr        );
71528d2ad80SAndreas Gohr
71628d2ad80SAndreas Gohr        // do our thing if BEFORE hook approves
717e1d9dcc8SAndreas Gohr        $evt = new Event('MAIL_MESSAGE_SEND', $data);
71828d2ad80SAndreas Gohr        if($evt->advise_before(true)) {
71928d2ad80SAndreas Gohr            // clean up before using the headers
720a36fc348SAndreas Gohr            $this->cleanHeaders();
721a36fc348SAndreas Gohr
7221d045709SAndreas Gohr            // any recipients?
7231d045709SAndreas Gohr            if(trim($this->headers['To']) === '' &&
7241d045709SAndreas Gohr                trim($this->headers['Cc']) === '' &&
725a89c75afSAndreas Gohr                trim($this->headers['Bcc']) === ''
726a89c75afSAndreas Gohr            ) return false;
7271d045709SAndreas Gohr
7281d045709SAndreas Gohr            // The To: header is special
7296be717dbSMichael Hamann            if(array_key_exists('To', $this->headers)) {
7306be717dbSMichael Hamann                $to = (string)$this->headers['To'];
7311d045709SAndreas Gohr                unset($this->headers['To']);
7321d045709SAndreas Gohr            } else {
7331d045709SAndreas Gohr                $to = '';
7341d045709SAndreas Gohr            }
7351d045709SAndreas Gohr
7361d045709SAndreas Gohr            // so is the subject
7376be717dbSMichael Hamann            if(array_key_exists('Subject', $this->headers)) {
7386be717dbSMichael Hamann                $subject = (string)$this->headers['Subject'];
7391d045709SAndreas Gohr                unset($this->headers['Subject']);
7401d045709SAndreas Gohr            } else {
7411d045709SAndreas Gohr                $subject = '';
7421d045709SAndreas Gohr            }
7431d045709SAndreas Gohr
7441d045709SAndreas Gohr            // make the body
7451d045709SAndreas Gohr            $body = $this->prepareBody();
7464c89a7f6SAndreas Gohr            if($body === false) return false;
7471d045709SAndreas Gohr
7481d045709SAndreas Gohr            // cook the headers
7491d045709SAndreas Gohr            $headers = $this->prepareHeaders();
75028d2ad80SAndreas Gohr            // add any headers set by legacy plugins
75128d2ad80SAndreas Gohr            if(trim($data['headers'])) {
75228d2ad80SAndreas Gohr                $headers .= MAILHEADER_EOL.trim($data['headers']);
75328d2ad80SAndreas Gohr            }
7541d045709SAndreas Gohr
7553f6872b1SMyron Turner            if(!function_exists('mail')){
7563f6872b1SMyron Turner                $emsg = $lang['email_fail'] . $subject;
7573f6872b1SMyron Turner                error_log($emsg);
7583f6872b1SMyron Turner                msg(hsc($emsg), -1, __LINE__, __FILE__, MSG_MANAGERS_ONLY);
7593f6872b1SMyron Turner                $evt->advise_after();
7603f6872b1SMyron Turner                return false;
7613f6872b1SMyron Turner            }
7623f6872b1SMyron Turner
7631d045709SAndreas Gohr            // send the thing
764bfa6d256SAndreas Gohr            if($to === '') $to = '(undisclosed-recipients)'; // #1422
765749c0023SAndreas Gohr            if($this->sendparam === null) {
76628d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers);
7671d045709SAndreas Gohr            } else {
76828d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers, $this->sendparam);
7691d045709SAndreas Gohr            }
7701d045709SAndreas Gohr        }
77128d2ad80SAndreas Gohr        // any AFTER actions?
77228d2ad80SAndreas Gohr        $evt->advise_after();
77328d2ad80SAndreas Gohr        return $success;
77428d2ad80SAndreas Gohr    }
775bb01c27cSAndreas Gohr}
776