]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - vendor/pear/mail/Mail/mail.php
MediaWiki 1.30.2
[autoinstalls/mediawiki.git] / vendor / pear / mail / Mail / mail.php
1 <?php
2 /**
3  * internal PHP-mail() implementation of the PEAR Mail:: interface.
4  *
5  * PHP version 5
6  *
7  * LICENSE:
8  *
9  * Copyright (c) 2010-2017, Chuck Hagenbuch
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  *
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  *
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * 3. Neither the name of the copyright holder nor the names of its
24  *    contributors may be used to endorse or promote products derived from
25  *    this software without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38  *
39  * @category    Mail
40  * @package     Mail
41  * @author      Chuck Hagenbuch <chuck@horde.org> 
42  * @copyright   2010-2017 Chuck Hagenbuch
43  * @license     http://opensource.org/licenses/BSD-3-Clause New BSD License
44  * @version     CVS: $Id$
45  * @link        http://pear.php.net/package/Mail/
46  */
47
48 /**
49  * internal PHP-mail() implementation of the PEAR Mail:: interface.
50  * @package Mail
51  * @version $Revision$
52  */
53 class Mail_mail extends Mail {
54
55     /**
56      * Any arguments to pass to the mail() function.
57      * @var string
58      */
59     var $_params = '';
60
61     /**
62      * Constructor.
63      *
64      * Instantiates a new Mail_mail:: object based on the parameters
65      * passed in.
66      *
67      * @param array $params Extra arguments for the mail() function.
68      */
69     public function __construct($params = null)
70     {
71         // The other mail implementations accept parameters as arrays.
72         // In the interest of being consistent, explode an array into
73         // a string of parameter arguments.
74         if (is_array($params)) {
75             $this->_params = join(' ', $params);
76         } else {
77             $this->_params = $params;
78         }
79
80         /* Because the mail() function may pass headers as command
81          * line arguments, we can't guarantee the use of the standard
82          * "\r\n" separator.  Instead, we use the system's native line
83          * separator. */
84         if (defined('PHP_EOL')) {
85             $this->sep = PHP_EOL;
86         } else {
87             $this->sep = (strpos(PHP_OS, 'WIN') === false) ? "\n" : "\r\n";
88         }
89     }
90
91     /**
92      * Implements Mail_mail::send() function using php's built-in mail()
93      * command.
94      *
95      * @param mixed $recipients Either a comma-seperated list of recipients
96      *              (RFC822 compliant), or an array of recipients,
97      *              each RFC822 valid. This may contain recipients not
98      *              specified in the headers, for Bcc:, resending
99      *              messages, etc.
100      *
101      * @param array $headers The array of headers to send with the mail, in an
102      *              associative array, where the array key is the
103      *              header name (ie, 'Subject'), and the array value
104      *              is the header value (ie, 'test'). The header
105      *              produced from those values would be 'Subject:
106      *              test'.
107      *
108      * @param string $body The full text of the message body, including any
109      *               Mime parts, etc.
110      *
111      * @return mixed Returns true on success, or a PEAR_Error
112      *               containing a descriptive error message on
113      *               failure.
114      */
115     public function send($recipients, $headers, $body)
116     {
117         if (!is_array($headers)) {
118             return PEAR::raiseError('$headers must be an array');
119         }
120
121         $result = $this->_sanitizeHeaders($headers);
122         if (is_a($result, 'PEAR_Error')) {
123             return $result;
124         }
125
126         // If we're passed an array of recipients, implode it.
127         if (is_array($recipients)) {
128             $recipients = implode(', ', $recipients);
129         }
130
131         // Get the Subject out of the headers array so that we can
132         // pass it as a seperate argument to mail().
133         $subject = '';
134         if (isset($headers['Subject'])) {
135             $subject = $headers['Subject'];
136             unset($headers['Subject']);
137         }
138
139         // Also remove the To: header.  The mail() function will add its own
140         // To: header based on the contents of $recipients.
141         unset($headers['To']);
142
143         // Flatten the headers out.
144         $headerElements = $this->prepareHeaders($headers);
145         if (is_a($headerElements, 'PEAR_Error')) {
146             return $headerElements;
147         }
148         list(, $text_headers) = $headerElements;
149
150         // We only use mail()'s optional fifth parameter if the additional
151         // parameters have been provided and we're not running in safe mode.
152         if (empty($this->_params) || ini_get('safe_mode')) {
153             $result = mail($recipients, $subject, $body, $text_headers);
154         } else {
155             $result = mail($recipients, $subject, $body, $text_headers,
156                            $this->_params);
157         }
158
159         // If the mail() function returned failure, we need to create a
160         // PEAR_Error object and return it instead of the boolean result.
161         if ($result === false) {
162             $result = PEAR::raiseError('mail() returned failure');
163         }
164
165         return $result;
166     }
167
168 }