3  * internal PHP-mail() implementation of the PEAR Mail:: interface.
 
   9  * Copyright (c) 2010 Chuck Hagenbuch
 
  10  * All rights reserved.
 
  12  * Redistribution and use in source and binary forms, with or without
 
  13  * modification, are permitted provided that the following conditions
 
  16  * o Redistributions of source code must retain the above copyright
 
  17  *   notice, this list of conditions and the following disclaimer.
 
  18  * o Redistributions in binary form must reproduce the above copyright
 
  19  *   notice, this list of conditions and the following disclaimer in the
 
  20  *   documentation and/or other materials provided with the distribution.
 
  21  * o The names of the authors may not be used to endorse or promote
 
  22  *   products derived from this software without specific prior written
 
  25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
  26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
  27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
  28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
  29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
  30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
  31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
  32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
  33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
  34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
  35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
  39  * @author      Chuck Hagenbuch <chuck@horde.org> 
 
  40  * @copyright   2010 Chuck Hagenbuch
 
  41  * @license     http://opensource.org/licenses/bsd-license.php New BSD License
 
  43  * @link        http://pear.php.net/package/Mail/
 
  47  * internal PHP-mail() implementation of the PEAR Mail:: interface.
 
  51 class Mail_mail extends Mail {
 
  54      * Any arguments to pass to the mail() function.
 
  62      * Instantiates a new Mail_mail:: object based on the parameters
 
  65      * @param array $params Extra arguments for the mail() function.
 
  67     public function __construct($params = null)
 
  69         // The other mail implementations accept parameters as arrays.
 
  70         // In the interest of being consistent, explode an array into
 
  71         // a string of parameter arguments.
 
  72         if (is_array($params)) {
 
  73             $this->_params = join(' ', $params);
 
  75             $this->_params = $params;
 
  78         /* Because the mail() function may pass headers as command
 
  79          * line arguments, we can't guarantee the use of the standard
 
  80          * "\r\n" separator.  Instead, we use the system's native line
 
  82         if (defined('PHP_EOL')) {
 
  85             $this->sep = (strpos(PHP_OS, 'WIN') === false) ? "\n" : "\r\n";
 
  90      * Implements Mail_mail::send() function using php's built-in mail()
 
  93      * @param mixed $recipients Either a comma-seperated list of recipients
 
  94      *              (RFC822 compliant), or an array of recipients,
 
  95      *              each RFC822 valid. This may contain recipients not
 
  96      *              specified in the headers, for Bcc:, resending
 
  99      * @param array $headers The array of headers to send with the mail, in an
 
 100      *              associative array, where the array key is the
 
 101      *              header name (ie, 'Subject'), and the array value
 
 102      *              is the header value (ie, 'test'). The header
 
 103      *              produced from those values would be 'Subject:
 
 106      * @param string $body The full text of the message body, including any
 
 109      * @return mixed Returns true on success, or a PEAR_Error
 
 110      *               containing a descriptive error message on
 
 113     public function send($recipients, $headers, $body)
 
 115         if (!is_array($headers)) {
 
 116             return PEAR::raiseError('$headers must be an array');
 
 119         $result = $this->_sanitizeHeaders($headers);
 
 120         if (is_a($result, 'PEAR_Error')) {
 
 124         // If we're passed an array of recipients, implode it.
 
 125         if (is_array($recipients)) {
 
 126             $recipients = implode(', ', $recipients);
 
 129         // Get the Subject out of the headers array so that we can
 
 130         // pass it as a seperate argument to mail().
 
 132         if (isset($headers['Subject'])) {
 
 133             $subject = $headers['Subject'];
 
 134             unset($headers['Subject']);
 
 137         // Also remove the To: header.  The mail() function will add its own
 
 138         // To: header based on the contents of $recipients.
 
 139         unset($headers['To']);
 
 141         // Flatten the headers out.
 
 142         $headerElements = $this->prepareHeaders($headers);
 
 143         if (is_a($headerElements, 'PEAR_Error')) {
 
 144             return $headerElements;
 
 146         list(, $text_headers) = $headerElements;
 
 148         // We only use mail()'s optional fifth parameter if the additional
 
 149         // parameters have been provided and we're not running in safe mode.
 
 150         if (empty($this->_params) || ini_get('safe_mode')) {
 
 151             $result = mail($recipients, $subject, $body, $text_headers);
 
 153             $result = mail($recipients, $subject, $body, $text_headers,
 
 157         // If the mail() function returned failure, we need to create a
 
 158         // PEAR_Error object and return it instead of the boolean result.
 
 159         if ($result === false) {
 
 160             $result = PEAR::raiseError('mail() returned failure');