xref: /dokuwiki/inc/Mailer.class.php (revision 24870174d2ee45460ba6bcfe5f5a0ae94715efd7)
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 */
11*24870174SAndreas Gohruse dokuwiki\Utf8\PhpString;
12*24870174SAndreas Gohruse dokuwiki\Utf8\Clean;
13e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event;
14e1d9dcc8SAndreas Gohr
15a89c75afSAndreas Gohr/**
16a89c75afSAndreas Gohr * Mail Handling
17a89c75afSAndreas Gohr */
18bb01c27cSAndreas Gohrclass Mailer {
19bb01c27cSAndreas Gohr
20*24870174SAndreas Gohr    protected $headers   = [];
21*24870174SAndreas Gohr    protected $attach    = [];
22f41c79d7SAndreas Gohr    protected $html      = '';
23f41c79d7SAndreas Gohr    protected $text      = '';
24bb01c27cSAndreas Gohr
25f41c79d7SAndreas Gohr    protected $boundary  = '';
26f41c79d7SAndreas Gohr    protected $partid    = '';
27*24870174SAndreas Gohr    protected $sendparam;
28bb01c27cSAndreas Gohr
29f41c79d7SAndreas Gohr    protected $allowhtml = true;
301d045709SAndreas Gohr
31*24870174SAndreas Gohr    protected $replacements = ['text'=> [], 'html' => []];
329ea45836SChristopher Smith
331d045709SAndreas Gohr    /**
341d045709SAndreas Gohr     * Constructor
351d045709SAndreas Gohr     *
369ea45836SChristopher Smith     * Initializes the boundary strings, part counters and token replacements
371d045709SAndreas Gohr     */
381d045709SAndreas Gohr    public function __construct() {
399f3eca0bSAndreas Gohr        global $conf;
40585bf44eSChristopher Smith        /* @var Input $INPUT */
41585bf44eSChristopher Smith        global $INPUT;
429f3eca0bSAndreas Gohr
439f3eca0bSAndreas Gohr        $server = parse_url(DOKU_URL, PHP_URL_HOST);
44749c0023SAndreas Gohr        if(strpos($server,'.') === false) $server .= '.localhost';
451d045709SAndreas Gohr
46*24870174SAndreas Gohr        $this->partid   = substr(md5(uniqid(random_int(0, mt_getrandmax()), true)),0, 8).'@'.$server;
47*24870174SAndreas Gohr        $this->boundary = '__________'.md5(uniqid(random_int(0, mt_getrandmax()), true));
489f3eca0bSAndreas Gohr
49749c0023SAndreas Gohr        $listid = implode('.', array_reverse(explode('/', DOKU_BASE))).$server;
509f3eca0bSAndreas Gohr        $listid = strtolower(trim($listid, '.'));
51*24870174SAndreas Gohr
52*24870174SAndreas Gohr        $messageid = uniqid(random_int(0, mt_getrandmax()), true) . "@$server";
539f3eca0bSAndreas Gohr
542398a2b5SAndreas Gohr        $this->allowhtml = (bool)$conf['htmlmail'];
552398a2b5SAndreas Gohr
569f3eca0bSAndreas Gohr        // add some default headers for mailfiltering FS#2247
575f43dcf4SLukas Rademacher        if(!empty($conf['mailreturnpath'])) {
585f43dcf4SLukas Rademacher            $this->setHeader('Return-Path', $conf['mailreturnpath']);
595f43dcf4SLukas Rademacher        }
606a1f928fSAndreas Gohr        $this->setHeader('X-Mailer', 'DokuWiki');
61585bf44eSChristopher Smith        $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
629f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Title', $conf['title']);
639f3eca0bSAndreas Gohr        $this->setHeader('X-DokuWiki-Server', $server);
649f3eca0bSAndreas Gohr        $this->setHeader('X-Auto-Response-Suppress', 'OOF');
659f3eca0bSAndreas Gohr        $this->setHeader('List-Id', $conf['title'].' <'.$listid.'>');
66d6e04b60SAndreas Gohr        $this->setHeader('Date', date('r'), false);
677c7659d2SPhilipp Specht        $this->setHeader('Message-Id', "<$messageid>");
689ea45836SChristopher Smith
699ea45836SChristopher Smith        $this->prepareTokenReplacements();
70bb01c27cSAndreas Gohr    }
71bb01c27cSAndreas Gohr
72bb01c27cSAndreas Gohr    /**
73bb01c27cSAndreas Gohr     * Attach a file
74bb01c27cSAndreas Gohr     *
75a89c75afSAndreas Gohr     * @param string $path  Path to the file to attach
76a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
77a89c75afSAndreas Gohr     * @param string $name The filename to use
78a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
79bb01c27cSAndreas Gohr     */
80bb01c27cSAndreas Gohr    public function attachFile($path, $mime, $name = '', $embed = '') {
81bb01c27cSAndreas Gohr        if(!$name) {
82*24870174SAndreas Gohr            $name = PhpString::basename($path);
83bb01c27cSAndreas Gohr        }
84bb01c27cSAndreas Gohr
85*24870174SAndreas Gohr        $this->attach[] = [
86bb01c27cSAndreas Gohr            'data'  => file_get_contents($path),
87bb01c27cSAndreas Gohr            'mime'  => $mime,
88bb01c27cSAndreas Gohr            'name'  => $name,
89bb01c27cSAndreas Gohr            'embed' => $embed
90*24870174SAndreas Gohr        ];
91bb01c27cSAndreas Gohr    }
92bb01c27cSAndreas Gohr
93bb01c27cSAndreas Gohr    /**
94bb01c27cSAndreas Gohr     * Attach a file
95bb01c27cSAndreas Gohr     *
96a89c75afSAndreas Gohr     * @param string $data  The file contents to attach
97a89c75afSAndreas Gohr     * @param string $mime  Mimetype of the attached file
98a89c75afSAndreas Gohr     * @param string $name  The filename to use
99a89c75afSAndreas Gohr     * @param string $embed Unique key to reference this file from the HTML part
100bb01c27cSAndreas Gohr     */
101bb01c27cSAndreas Gohr    public function attachContent($data, $mime, $name = '', $embed = '') {
102bb01c27cSAndreas Gohr        if(!$name) {
103*24870174SAndreas Gohr            [, $ext] = explode('/', $mime);
104bb01c27cSAndreas Gohr            $name = count($this->attach).".$ext";
105bb01c27cSAndreas Gohr        }
106bb01c27cSAndreas Gohr
107*24870174SAndreas Gohr        $this->attach[] = [
108bb01c27cSAndreas Gohr            'data'  => $data,
109bb01c27cSAndreas Gohr            'mime'  => $mime,
110bb01c27cSAndreas Gohr            'name'  => $name,
111bb01c27cSAndreas Gohr            'embed' => $embed
112*24870174SAndreas Gohr        ];
113bb01c27cSAndreas Gohr    }
114bb01c27cSAndreas Gohr
115bb01c27cSAndreas Gohr    /**
116850dbf1fSAndreas Gohr     * Callback function to automatically embed images referenced in HTML templates
11742ea7f44SGerrit Uitslag     *
11842ea7f44SGerrit Uitslag     * @param array $matches
11942ea7f44SGerrit Uitslag     * @return string placeholder
120850dbf1fSAndreas Gohr     */
121749c0023SAndreas Gohr    protected function autoEmbedCallBack($matches) {
122850dbf1fSAndreas Gohr        static $embeds = 0;
123850dbf1fSAndreas Gohr        $embeds++;
124850dbf1fSAndreas Gohr
125850dbf1fSAndreas Gohr        // get file and mime type
126850dbf1fSAndreas Gohr        $media = cleanID($matches[1]);
127*24870174SAndreas Gohr        [, $mime] = mimetype($media);
128850dbf1fSAndreas Gohr        $file = mediaFN($media);
129850dbf1fSAndreas Gohr        if(!file_exists($file)) return $matches[0]; //bad reference, keep as is
130850dbf1fSAndreas Gohr
131850dbf1fSAndreas Gohr        // attach it and set placeholder
132850dbf1fSAndreas Gohr        $this->attachFile($file, $mime, '', 'autoembed'.$embeds);
133850dbf1fSAndreas Gohr        return '%%autoembed'.$embeds.'%%';
134850dbf1fSAndreas Gohr    }
135850dbf1fSAndreas Gohr
136850dbf1fSAndreas Gohr    /**
1371d045709SAndreas Gohr     * Add an arbitrary header to the mail
1381d045709SAndreas Gohr     *
139a36fc348SAndreas Gohr     * If an empy value is passed, the header is removed
140a36fc348SAndreas Gohr     *
1411d045709SAndreas Gohr     * @param string $header the header name (no trailing colon!)
14259bc3b48SGerrit Uitslag     * @param string|string[] $value  the value of the header
1431d045709SAndreas Gohr     * @param bool   $clean  remove all non-ASCII chars and line feeds?
1441d045709SAndreas Gohr     */
1451d045709SAndreas Gohr    public function setHeader($header, $value, $clean = true) {
1469f3eca0bSAndreas Gohr        $header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamline casing
1471d045709SAndreas Gohr        if($clean) {
148578b2c23SAndreas Gohr            $header = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@]+/', '', $header);
149578b2c23SAndreas Gohr            $value  = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@<>]+/', '', $value);
1501d045709SAndreas Gohr        }
151a36fc348SAndreas Gohr
152a36fc348SAndreas Gohr        // empty value deletes
153b6c97c70SAndreas Gohr        if(is_array($value)){
154b6c97c70SAndreas Gohr            $value = array_map('trim', $value);
155b6c97c70SAndreas Gohr            $value = array_filter($value);
156b6c97c70SAndreas Gohr            if(!$value) $value = '';
157b6c97c70SAndreas Gohr        }else{
158a36fc348SAndreas Gohr            $value = trim($value);
159b6c97c70SAndreas Gohr        }
160a36fc348SAndreas Gohr        if($value === '') {
161a36fc348SAndreas Gohr            if(isset($this->headers[$header])) unset($this->headers[$header]);
162a36fc348SAndreas Gohr        } else {
1631d045709SAndreas Gohr            $this->headers[$header] = $value;
1641d045709SAndreas Gohr        }
165a36fc348SAndreas Gohr    }
1661d045709SAndreas Gohr
1671d045709SAndreas Gohr    /**
1681d045709SAndreas Gohr     * Set additional parameters to be passed to sendmail
1691d045709SAndreas Gohr     *
1701d045709SAndreas Gohr     * Whatever is set here is directly passed to PHP's mail() command as last
1711d045709SAndreas Gohr     * parameter. Depending on the PHP setup this might break mailing alltogether
17242ea7f44SGerrit Uitslag     *
17342ea7f44SGerrit Uitslag     * @param string $param
1741d045709SAndreas Gohr     */
1751d045709SAndreas Gohr    public function setParameters($param) {
1761d045709SAndreas Gohr        $this->sendparam = $param;
1771d045709SAndreas Gohr    }
1781d045709SAndreas Gohr
1791d045709SAndreas Gohr    /**
180abbf0890SAndreas Gohr     * Set the text and HTML body and apply replacements
181abbf0890SAndreas Gohr     *
182abbf0890SAndreas Gohr     * This function applies a whole bunch of default replacements in addition
18304dcb5b2SChristopher Smith     * to the ones specified as parameters
184abbf0890SAndreas Gohr     *
185abbf0890SAndreas Gohr     * If you pass the HTML part or HTML replacements yourself you have to make
186abbf0890SAndreas Gohr     * sure you encode all HTML special chars correctly
187abbf0890SAndreas Gohr     *
188abbf0890SAndreas Gohr     * @param string $text     plain text body
189abbf0890SAndreas Gohr     * @param array  $textrep  replacements to apply on the text part
19064159a61SAndreas Gohr     * @param array  $htmlrep  replacements to apply on the HTML part, null to use $textrep (urls wrapped in <a> tags)
19159bc3b48SGerrit Uitslag     * @param string $html     the HTML body, leave null to create it from $text
192f08086ecSAndreas Gohr     * @param bool   $wrap     wrap the HTML in the default header/Footer
193abbf0890SAndreas Gohr     */
194f08086ecSAndreas Gohr    public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) {
195585bf44eSChristopher Smith
19676efd6d0SAndreas Gohr        $htmlrep = (array)$htmlrep;
19776efd6d0SAndreas Gohr        $textrep = (array)$textrep;
198abbf0890SAndreas Gohr
199abbf0890SAndreas Gohr        // create HTML from text if not given
200749c0023SAndreas Gohr        if($html === null) {
201ba9c057bSAndreas Gohr            $html = $text;
202ba9c057bSAndreas Gohr            $html = hsc($html);
203ba2c2f17Sfurun            $html = preg_replace('/^----+$/m', '<hr >', $html);
204ba9c057bSAndreas Gohr            $html = nl2br($html);
205abbf0890SAndreas Gohr        }
206f08086ecSAndreas Gohr        if($wrap) {
207749c0023SAndreas Gohr            $wrapper = rawLocale('mailwrap', 'html');
2083819cafdSfurun            $html = preg_replace('/\n-- <br \/>.*$/s', '', $html); //strip signature
2093819cafdSfurun            $html = str_replace('@EMAILSIGNATURE@', '', $html); //strip @EMAILSIGNATURE@
210749c0023SAndreas Gohr            $html = str_replace('@HTMLBODY@', $html, $wrapper);
211f08086ecSAndreas Gohr        }
212f08086ecSAndreas Gohr
2133819cafdSfurun        if(strpos($text, '@EMAILSIGNATURE@') === false) {
2149ea45836SChristopher Smith            $text .= '@EMAILSIGNATURE@';
2153819cafdSfurun        }
216ba2c2f17Sfurun
21776efd6d0SAndreas Gohr        // copy over all replacements missing for HTML (autolink URLs)
21876efd6d0SAndreas Gohr        foreach($textrep as $key => $value) {
21976efd6d0SAndreas Gohr            if(isset($htmlrep[$key])) continue;
2203e7e6067SKlap-in            if(media_isexternal($value)) {
22176efd6d0SAndreas Gohr                $htmlrep[$key] = '<a href="'.hsc($value).'">'.hsc($value).'</a>';
22276efd6d0SAndreas Gohr            } else {
22376efd6d0SAndreas Gohr                $htmlrep[$key] = hsc($value);
22476efd6d0SAndreas Gohr            }
225abbf0890SAndreas Gohr        }
226abbf0890SAndreas Gohr
227850dbf1fSAndreas Gohr        // embed media from templates
228a89c75afSAndreas Gohr        $html = preg_replace_callback(
229a89c75afSAndreas Gohr            '/@MEDIA\(([^\)]+)\)@/',
230*24870174SAndreas Gohr            [$this, 'autoEmbedCallBack'], $html
231a89c75afSAndreas Gohr        );
232850dbf1fSAndreas Gohr
2339ea45836SChristopher Smith        // add default token replacements
234*24870174SAndreas Gohr        $trep = array_merge($this->replacements['text'], $textrep);
235*24870174SAndreas Gohr        $hrep = array_merge($this->replacements['html'], $htmlrep);
236abbf0890SAndreas Gohr
237abbf0890SAndreas Gohr        // Apply replacements
238abbf0890SAndreas Gohr        foreach($trep as $key => $substitution) {
239abbf0890SAndreas Gohr            $text = str_replace('@'.strtoupper($key).'@', $substitution, $text);
240abbf0890SAndreas Gohr        }
241abbf0890SAndreas Gohr        foreach($hrep as $key => $substitution) {
242abbf0890SAndreas Gohr            $html = str_replace('@'.strtoupper($key).'@', $substitution, $html);
243abbf0890SAndreas Gohr        }
244abbf0890SAndreas Gohr
245abbf0890SAndreas Gohr        $this->setHTML($html);
246abbf0890SAndreas Gohr        $this->setText($text);
247abbf0890SAndreas Gohr    }
248abbf0890SAndreas Gohr
249abbf0890SAndreas Gohr    /**
250bb01c27cSAndreas Gohr     * Set the HTML part of the mail
251bb01c27cSAndreas Gohr     *
252bb01c27cSAndreas Gohr     * Placeholders can be used to reference embedded attachments
253abbf0890SAndreas Gohr     *
254abbf0890SAndreas Gohr     * You probably want to use setBody() instead
25542ea7f44SGerrit Uitslag     *
25642ea7f44SGerrit Uitslag     * @param string $html
257bb01c27cSAndreas Gohr     */
2581d045709SAndreas Gohr    public function setHTML($html) {
259bb01c27cSAndreas Gohr        $this->html = $html;
260bb01c27cSAndreas Gohr    }
261bb01c27cSAndreas Gohr
262bb01c27cSAndreas Gohr    /**
263bb01c27cSAndreas Gohr     * Set the plain text part of the mail
264abbf0890SAndreas Gohr     *
265abbf0890SAndreas Gohr     * You probably want to use setBody() instead
26642ea7f44SGerrit Uitslag     *
26742ea7f44SGerrit Uitslag     * @param string $text
268bb01c27cSAndreas Gohr     */
2691d045709SAndreas Gohr    public function setText($text) {
270bb01c27cSAndreas Gohr        $this->text = $text;
271bb01c27cSAndreas Gohr    }
272bb01c27cSAndreas Gohr
273bb01c27cSAndreas Gohr    /**
274a36fc348SAndreas Gohr     * Add the To: recipients
275a36fc348SAndreas Gohr     *
2768c253612SGerrit Uitslag     * @see cleanAddress
27759bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
278a36fc348SAndreas Gohr     */
279a36fc348SAndreas Gohr    public function to($address) {
280a36fc348SAndreas Gohr        $this->setHeader('To', $address, false);
281a36fc348SAndreas Gohr    }
282a36fc348SAndreas Gohr
283a36fc348SAndreas Gohr    /**
284a36fc348SAndreas Gohr     * Add the Cc: recipients
285a36fc348SAndreas Gohr     *
2868c253612SGerrit Uitslag     * @see cleanAddress
28759bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
288a36fc348SAndreas Gohr     */
289a36fc348SAndreas Gohr    public function cc($address) {
290a36fc348SAndreas Gohr        $this->setHeader('Cc', $address, false);
291a36fc348SAndreas Gohr    }
292a36fc348SAndreas Gohr
293a36fc348SAndreas Gohr    /**
294a36fc348SAndreas Gohr     * Add the Bcc: recipients
295a36fc348SAndreas Gohr     *
2968c253612SGerrit Uitslag     * @see cleanAddress
29759bc3b48SGerrit Uitslag     * @param string|string[]  $address Multiple adresses separated by commas or as array
298a36fc348SAndreas Gohr     */
299a36fc348SAndreas Gohr    public function bcc($address) {
300a36fc348SAndreas Gohr        $this->setHeader('Bcc', $address, false);
301a36fc348SAndreas Gohr    }
302a36fc348SAndreas Gohr
303a36fc348SAndreas Gohr    /**
304a36fc348SAndreas Gohr     * Add the From: address
305a36fc348SAndreas Gohr     *
306a36fc348SAndreas Gohr     * This is set to $conf['mailfrom'] when not specified so you shouldn't need
307a36fc348SAndreas Gohr     * to call this function
308a36fc348SAndreas Gohr     *
3098c253612SGerrit Uitslag     * @see cleanAddress
310a36fc348SAndreas Gohr     * @param string  $address from address
311a36fc348SAndreas Gohr     */
312a36fc348SAndreas Gohr    public function from($address) {
313a36fc348SAndreas Gohr        $this->setHeader('From', $address, false);
314a36fc348SAndreas Gohr    }
315a36fc348SAndreas Gohr
316a36fc348SAndreas Gohr    /**
317a36fc348SAndreas Gohr     * Add the mail's Subject: header
318a36fc348SAndreas Gohr     *
319a36fc348SAndreas Gohr     * @param string $subject the mail subject
320a36fc348SAndreas Gohr     */
321a36fc348SAndreas Gohr    public function subject($subject) {
322a36fc348SAndreas Gohr        $this->headers['Subject'] = $subject;
323a36fc348SAndreas Gohr    }
324a36fc348SAndreas Gohr
325a36fc348SAndreas Gohr    /**
326102cdbd7SLarsGit223     * Return a clean name which can be safely used in mail address
327102cdbd7SLarsGit223     * fields. That means the name will be enclosed in '"' if it includes
328102cdbd7SLarsGit223     * a '"' or a ','. Also a '"' will be escaped as '\"'.
329102cdbd7SLarsGit223     *
330102cdbd7SLarsGit223     * @param string $name the name to clean-up
331102cdbd7SLarsGit223     * @see cleanAddress
332102cdbd7SLarsGit223     */
333102cdbd7SLarsGit223    public function getCleanName($name) {
3342b58f049SAndreas Gohr        $name = trim($name, " \t\"");
335102cdbd7SLarsGit223        $name = str_replace('"', '\"', $name, $count);
336102cdbd7SLarsGit223        if ($count > 0 || strpos($name, ',') !== false) {
337102cdbd7SLarsGit223            $name = '"'.$name.'"';
338102cdbd7SLarsGit223        }
339102cdbd7SLarsGit223        return $name;
340102cdbd7SLarsGit223    }
341102cdbd7SLarsGit223
342102cdbd7SLarsGit223    /**
3431d045709SAndreas Gohr     * Sets an email address header with correct encoding
344bb01c27cSAndreas Gohr     *
345bb01c27cSAndreas Gohr     * Unicode characters will be deaccented and encoded base64
346bb01c27cSAndreas Gohr     * for headers. Addresses may not contain Non-ASCII data!
347bb01c27cSAndreas Gohr     *
348102cdbd7SLarsGit223     * If @$addresses is a string then it will be split into multiple
349102cdbd7SLarsGit223     * addresses. Addresses must be separated by a comma. If the display
350102cdbd7SLarsGit223     * name includes a comma then it MUST be properly enclosed by '"' to
351102cdbd7SLarsGit223     * prevent spliting at the wrong point.
352102cdbd7SLarsGit223     *
353bb01c27cSAndreas Gohr     * Example:
3548c253612SGerrit Uitslag     *   cc("föö <foo@bar.com>, me@somewhere.com","TBcc");
355102cdbd7SLarsGit223     *   to("foo, Dr." <foo@bar.com>, me@somewhere.com");
356bb01c27cSAndreas Gohr     *
35742ea7f44SGerrit Uitslag     * @param string|string[]  $addresses Multiple adresses separated by commas or as array
35842ea7f44SGerrit Uitslag     * @return false|string  the prepared header (can contain multiple lines)
359bb01c27cSAndreas Gohr     */
360b6c97c70SAndreas Gohr    public function cleanAddress($addresses) {
361bb01c27cSAndreas Gohr        $headers = '';
362b6c97c70SAndreas Gohr        if(!is_array($addresses)){
363d31a1599SLarsGit223            $count = preg_match_all('/\s*(?:("[^"]*"[^,]+),*)|([^,]+)\s*,*/', $addresses, $matches, PREG_SET_ORDER);
364*24870174SAndreas Gohr            $addresses = [];
365743792d0SLarsGit223            if ($count !== false && is_array($matches)) {
366102cdbd7SLarsGit223                foreach ($matches as $match) {
367*24870174SAndreas Gohr                    $addresses[] = rtrim($match[0], ',');
368102cdbd7SLarsGit223                }
369b6c97c70SAndreas Gohr            }
370b6c97c70SAndreas Gohr        }
371b6c97c70SAndreas Gohr
372b6c97c70SAndreas Gohr        foreach($addresses as $part) {
373b6c97c70SAndreas Gohr            $part = preg_replace('/[\r\n\0]+/', ' ', $part); // remove attack vectors
374bb01c27cSAndreas Gohr            $part = trim($part);
375bb01c27cSAndreas Gohr
376bb01c27cSAndreas Gohr            // parse address
377bb01c27cSAndreas Gohr            if(preg_match('#(.*?)<(.*?)>#', $part, $matches)) {
378bb01c27cSAndreas Gohr                $text = trim($matches[1]);
379bb01c27cSAndreas Gohr                $addr = $matches[2];
380bb01c27cSAndreas Gohr            } else {
38110da1f74SAndreas Gohr                $text = '';
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?
390*24870174SAndreas Gohr            if(!Clean::isASCII($addr)) {
3914772cf38SAndreas Gohr                msg(hsc("E-Mail address <$addr> is not ASCII"), -1, __LINE__, __FILE__, MSG_ADMINS_ONLY);
392bb01c27cSAndreas Gohr                continue;
393bb01c27cSAndreas Gohr            }
394bb01c27cSAndreas Gohr
39564d23c16SAndreas Gohr            if(!mail_isvalid($addr)) {
3964772cf38SAndreas Gohr                msg(hsc("E-Mail address <$addr> is not valid"), -1, __LINE__, __FILE__, MSG_ADMINS_ONLY);
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')) {
406*24870174SAndreas Gohr                    $text = Clean::deaccent($text);
407*24870174SAndreas Gohr                    $text = Clean::strip($text);
408bb01c27cSAndreas Gohr                }
409bb01c27cSAndreas Gohr
410*24870174SAndreas Gohr                if(strpos($text, ',') !== false || !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']);
546*24870174SAndreas Gohr        $addrs = ['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'])) {
556*24870174SAndreas Gohr                if(PhpString::strlen($conf['title']) < 20) {
55754f30755SAndreas Gohr                    $prefix = '['.$conf['title'].']';
55854f30755SAndreas Gohr                } else {
559*24870174SAndreas Gohr                    $prefix = '['.PhpString::substr($conf['title'], 0, 20).'...]';
5608a215f09SAndreas Gohr                }
5618a215f09SAndreas Gohr            } else {
562a36fc348SAndreas Gohr                $prefix = '['.$conf['mailprefix'].']';
56354f30755SAndreas Gohr            }
564a36fc348SAndreas Gohr            $len = strlen($prefix);
565*24870174SAndreas 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')) {
571*24870174SAndreas Gohr                $this->headers['Subject'] = Clean::deaccent($this->headers['Subject']);
572*24870174SAndreas Gohr                $this->headers['Subject'] = Clean::strip($this->headers['Subject']);
573a36fc348SAndreas Gohr            }
574*24870174SAndreas Gohr            if(!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);
6388fa268b3SAndreas Gohr        $name = $INFO['userinfo']['name'] ?? '';
6398fa268b3SAndreas Gohr        $mail = $INFO['userinfo']['mail'] ?? '';
6409ea45836SChristopher Smith
641*24870174SAndreas Gohr        $this->replacements['text'] = [
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'),
64968491db9SPhy            'NAME' => $name,
65068491db9SPhy            'MAIL' => $mail
651*24870174SAndreas Gohr        ];
652*24870174SAndreas Gohr
65364159a61SAndreas Gohr        $signature = str_replace(
65464159a61SAndreas Gohr            '@DOKUWIKIURL@',
65564159a61SAndreas Gohr            $this->replacements['text']['DOKUWIKIURL'],
65664159a61SAndreas Gohr            $lang['email_signature_text']
65764159a61SAndreas Gohr        );
658774514c9SGerrit Uitslag        $this->replacements['text']['EMAILSIGNATURE'] = "\n-- \n" . $signature . "\n";
6599ea45836SChristopher Smith
660*24870174SAndreas Gohr        $this->replacements['html'] = [
6619ea45836SChristopher Smith            'DATE' => '<i>' . hsc(dformat()) . '</i>',
6629ea45836SChristopher Smith            'BROWSER' => hsc($INPUT->server->str('HTTP_USER_AGENT')),
6639ea45836SChristopher Smith            'IPADDRESS' => '<code>' . hsc($ip) . '</code>',
6649ea45836SChristopher Smith            'HOSTNAME' => '<code>' . hsc($cip) . '</code>',
6659ea45836SChristopher Smith            'TITLE' => hsc($conf['title']),
6669ea45836SChristopher Smith            'DOKUWIKIURL' => '<a href="' . DOKU_URL . '">' . DOKU_URL . '</a>',
6679ea45836SChristopher Smith            'USER' => hsc($INPUT->server->str('REMOTE_USER')),
66868491db9SPhy            'NAME' => hsc($name),
669*24870174SAndreas Gohr            'MAIL' => '<a href="mailto:"' . hsc($mail) . '">' . hsc($mail) . '</a>'
670*24870174SAndreas Gohr        ];
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(
676*24870174SAndreas Gohr            ['@DOKUWIKIURL@', "\n"],
677*24870174SAndreas Gohr            [$this->replacements['html']['DOKUWIKIURL'], '<br />'],
678774514c9SGerrit Uitslag            $signature
679774514c9SGerrit Uitslag        );
680774514c9SGerrit Uitslag        $this->replacements['html']['EMAILSIGNATURE'] = $signature;
6819ea45836SChristopher Smith    }
6829ea45836SChristopher Smith
6839ea45836SChristopher Smith    /**
6841d045709SAndreas Gohr     * Send the mail
6851d045709SAndreas Gohr     *
6861d045709SAndreas Gohr     * Call this after all data was set
6871d045709SAndreas Gohr     *
68828d2ad80SAndreas Gohr     * @triggers MAIL_MESSAGE_SEND
6891d045709SAndreas Gohr     * @return bool true if the mail was successfully passed to the MTA
6901d045709SAndreas Gohr     */
6911d045709SAndreas Gohr    public function send() {
6923f6872b1SMyron Turner        global $lang;
69328d2ad80SAndreas Gohr        $success = false;
694a36fc348SAndreas Gohr
69528d2ad80SAndreas Gohr        // prepare hook data
696*24870174SAndreas Gohr        $data = [
69728d2ad80SAndreas Gohr            // pass the whole mail class to plugin
69828d2ad80SAndreas Gohr            'mail'    => $this,
69928d2ad80SAndreas Gohr            // pass references for backward compatibility
70028d2ad80SAndreas Gohr            'to'      => &$this->headers['To'],
70128d2ad80SAndreas Gohr            'cc'      => &$this->headers['Cc'],
70228d2ad80SAndreas Gohr            'bcc'     => &$this->headers['Bcc'],
70328d2ad80SAndreas Gohr            'from'    => &$this->headers['From'],
70428d2ad80SAndreas Gohr            'subject' => &$this->headers['Subject'],
70528d2ad80SAndreas Gohr            'body'    => &$this->text,
706a89c75afSAndreas Gohr            'params'  => &$this->sendparam,
70728d2ad80SAndreas Gohr            'headers' => '', // plugins shouldn't use this
70828d2ad80SAndreas Gohr            // signal if we mailed successfully to AFTER event
70928d2ad80SAndreas Gohr            'success' => &$success,
710*24870174SAndreas Gohr        ];
71128d2ad80SAndreas Gohr
71228d2ad80SAndreas Gohr        // do our thing if BEFORE hook approves
713e1d9dcc8SAndreas Gohr        $evt = new Event('MAIL_MESSAGE_SEND', $data);
71428d2ad80SAndreas Gohr        if($evt->advise_before(true)) {
71528d2ad80SAndreas Gohr            // clean up before using the headers
716a36fc348SAndreas Gohr            $this->cleanHeaders();
717a36fc348SAndreas Gohr
7181d045709SAndreas Gohr            // any recipients?
7191d045709SAndreas Gohr            if(trim($this->headers['To']) === '' &&
7201d045709SAndreas Gohr                trim($this->headers['Cc']) === '' &&
721a89c75afSAndreas Gohr                trim($this->headers['Bcc']) === ''
722a89c75afSAndreas Gohr            ) return false;
7231d045709SAndreas Gohr
7241d045709SAndreas Gohr            // The To: header is special
7256be717dbSMichael Hamann            if(array_key_exists('To', $this->headers)) {
7266be717dbSMichael Hamann                $to = (string)$this->headers['To'];
7271d045709SAndreas Gohr                unset($this->headers['To']);
7281d045709SAndreas Gohr            } else {
7291d045709SAndreas Gohr                $to = '';
7301d045709SAndreas Gohr            }
7311d045709SAndreas Gohr
7321d045709SAndreas Gohr            // so is the subject
7336be717dbSMichael Hamann            if(array_key_exists('Subject', $this->headers)) {
7346be717dbSMichael Hamann                $subject = (string)$this->headers['Subject'];
7351d045709SAndreas Gohr                unset($this->headers['Subject']);
7361d045709SAndreas Gohr            } else {
7371d045709SAndreas Gohr                $subject = '';
7381d045709SAndreas Gohr            }
7391d045709SAndreas Gohr
7401d045709SAndreas Gohr            // make the body
7411d045709SAndreas Gohr            $body = $this->prepareBody();
7424c89a7f6SAndreas Gohr            if($body === false) return false;
7431d045709SAndreas Gohr
7441d045709SAndreas Gohr            // cook the headers
7451d045709SAndreas Gohr            $headers = $this->prepareHeaders();
74628d2ad80SAndreas Gohr            // add any headers set by legacy plugins
74728d2ad80SAndreas Gohr            if(trim($data['headers'])) {
74828d2ad80SAndreas Gohr                $headers .= MAILHEADER_EOL.trim($data['headers']);
74928d2ad80SAndreas Gohr            }
7501d045709SAndreas Gohr
7513f6872b1SMyron Turner            if(!function_exists('mail')){
7523f6872b1SMyron Turner                $emsg = $lang['email_fail'] . $subject;
7533f6872b1SMyron Turner                error_log($emsg);
7543f6872b1SMyron Turner                msg(hsc($emsg), -1, __LINE__, __FILE__, MSG_MANAGERS_ONLY);
7553f6872b1SMyron Turner                $evt->advise_after();
7563f6872b1SMyron Turner                return false;
7573f6872b1SMyron Turner            }
7583f6872b1SMyron Turner
7591d045709SAndreas Gohr            // send the thing
760bfa6d256SAndreas Gohr            if($to === '') $to = '(undisclosed-recipients)'; // #1422
761749c0023SAndreas Gohr            if($this->sendparam === null) {
76228d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers);
7631d045709SAndreas Gohr            } else {
76428d2ad80SAndreas Gohr                $success = @mail($to, $subject, $body, $headers, $this->sendparam);
7651d045709SAndreas Gohr            }
7661d045709SAndreas Gohr        }
76728d2ad80SAndreas Gohr        // any AFTER actions?
76828d2ad80SAndreas Gohr        $evt->advise_after();
76928d2ad80SAndreas Gohr        return $success;
77028d2ad80SAndreas Gohr    }
771bb01c27cSAndreas Gohr}
772