home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / pear / Mail.php < prev    next >
PHP Script  |  2001-02-22  |  7KB  |  177 lines

  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // | PHP version 4.0                                                      |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2001 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.02 of the PHP license,      |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Chuck Hagenbuch <chuck@horde.org>                           |
  17. // +----------------------------------------------------------------------+
  18.  
  19. require_once 'PEAR.php';
  20.  
  21. /**
  22.  * PEAR's Mail:: interface. Defines the interface for implementing
  23.  * mailers under the PEAR hierarchy, and provides supporting functions
  24.  * useful in multiple mailer backends.
  25.  */
  26. class Mail extends PEAR {
  27.     
  28.     /**
  29.      * Provides an interface for generating Mail:: objects of various
  30.      * types
  31.      *
  32.      * @param string The kind of Mail:: object to instantiate.
  33.      * @param array  The parameters to pass to the Mail:: object.
  34.      * @access public
  35.      */
  36.     function factory($driver, $params = array())
  37.     {
  38.     $driver = strtolower($driver);
  39.         if (@include_once 'Mail/' . $driver . '.php') {
  40.             $class = 'Mail_' . $driver;
  41.             return new $class($params);
  42.         } else {
  43.             return new PEAR_Error('Unable to find class for driver ' . $driver);
  44.         }
  45.     }
  46.     
  47.     /**
  48.      * Implements Mail::send() function using php's built-in mail()
  49.      * command.
  50.      * 
  51.      * @param mixed Either a comma-seperated list of recipients
  52.      *              (RFC822 compliant), or an array of recipients,
  53.      *              each RFC822 valid. This may contain recipients not
  54.      *              specified in the headers, for Bcc:, resending
  55.      *              messages, etc.
  56.      *
  57.      * @param array The array of headers to send with the mail, in an
  58.      *              associative array, where the array key is the
  59.      *              header name (ie, 'Subject'), and the array value
  60.      *              is the header value (ie, 'test'). The header
  61.      *              produced from those values would be 'Subject:
  62.      *              test'.
  63.      *
  64.      * @param string The full text of the message body, including any
  65.      *               Mime parts, etc.
  66.      *
  67.      * @return mixed Returns true on success, or a PEAR_Error
  68.      *               containing a descriptive error message on
  69.      *               failure.
  70.      * @access public
  71.      */    
  72.     function send($recipients, $headers, $body)
  73.     {
  74.         // if we're passed an array of recipients, implode it.
  75.         if (is_array($recipients)) {
  76.             $recipients = implode(', ', $recipients);
  77.         }
  78.         
  79.         // get the Subject out of the headers array so that we can
  80.         // pass it as a seperate argument to mail().
  81.         $subject = '';
  82.         if (isset($headers['Subject'])) {
  83.             $subject = $headers['Subject'];
  84.             unset($headers['Subject']);
  85.         }
  86.         
  87.         // flatten the headers out.
  88.         list(,$text_headers) = Mail::prepareHeaders($headers);
  89.         
  90.         return mail($recipients, $subject, $body, $text_headers);
  91.     }
  92.     
  93.     /**
  94.      * Take an array of mail headers and return a string containing
  95.      * text usable in sending a message.
  96.      *
  97.      * @param array The array of headers to prepare, in an associative
  98.      *              array, where the array key is the header name (ie,
  99.      *              'Subject'), and the array value is the header
  100.      *              value (ie, 'test'). The header produced from those
  101.      *              values would be 'Subject: test'.
  102.      *
  103.      * @return mixed Returns false if it encounters a bad address,
  104.      *               otherwise returns an array containing two
  105.      *               elements: Any From: address found in the headers,
  106.      *               and the plain text version of the headers.
  107.      * @access protected
  108.      */
  109.     function prepareHeaders($headers)
  110.     {
  111.         // Look out for the From: value to use along the way.
  112.         $text_headers = '';  // text representation of headers
  113.         $from = null;
  114.         
  115.         foreach ($headers as $key => $val) {
  116.             if ($key == 'From') {
  117.                 include_once 'Mail/RFC822.php';
  118.                 
  119.                 $from_arr = Mail_RFC822::parseAddressList($val, 'localhost', false);
  120.                 $from = $from_arr[0]->mailbox . '@' . $from_arr[0]->host;
  121.                 if (strstr($from, ' ')) {
  122.                     // Reject outright envelope From addresses with spaces.
  123.                     return false;
  124.                 }
  125.                 $text_headers .= $key . ': ' . $val . "\n";
  126.             } else if ($key == 'Received') {
  127.                 // put Received: headers at the top, since Receieved:
  128.                 // after Subject: in the header order is somtimes used
  129.                 // as a spam trap.
  130.                 $text_headers = $key . ': ' . $val . "\n" . $text_headers;
  131.             } else {
  132.                 $text_headers .= $key . ': ' . $val . "\n";
  133.             }
  134.         }
  135.         
  136.         return array($from, $text_headers);
  137.     }
  138.     
  139.     /**
  140.      * Take a set of recipients and parse them, returning an array of
  141.      * bare addresses (forward paths) that can be passed to sendmail
  142.      * or an smtp server with the rcpt to: command.
  143.      *
  144.      * @param mixed Either a comma-seperated list of recipients
  145.      *              (RFC822 compliant), or an array of recipients,
  146.      *              each RFC822 valid.
  147.      *
  148.      * @return array An array of forward paths (bare addresses).
  149.      * @access protected
  150.      */
  151.     function parseRecipients($recipients)
  152.     {
  153.         include_once 'Mail/RFC822.php';
  154.         
  155.         // if we're passed an array, assume addresses are valid and
  156.         // implode them before parsing.
  157.         if (is_array($recipients)) {
  158.             $recipients = implode(', ', $recipients);
  159.         }
  160.         
  161.         // Parse recipients, leaving out all personal info. This is
  162.         // for smtp recipients, etc. All relevant personal information
  163.         // should already be in the headers.
  164.         $addresses = Mail_RFC822::parseAddressList($recipients, 'localhost', false);
  165.         $recipients = array();
  166.         if (is_array($addresses)) {
  167.             foreach ($addresses as $ob) {
  168.                 $recipients[] = $ob->mailbox . '@' . $ob->host;
  169.             }
  170.         }
  171.         
  172.         return $recipients;
  173.     }
  174.     
  175. }
  176. ?>
  177.