linea21-externals
[ class tree: linea21-externals ] [ index: linea21-externals ] [ all elements ]

Source for file class.phpmailer.php

Documentation is available at class.phpmailer.php

  1. <?php
  2. /*~ class.phpmailer.php
  3.  .---------------------------------------------------------------------------.
  4.  |  Software: PHPMailer - PHP email class                                    |
  5.  |   Version: 5.1                                                            |
  6.  |   Contact: via sourceforge.net support pages (also www.worxware.com)      |
  7.  |      Info: http://phpmailer.sourceforge.net                               |
  8.  |   Support: http://sourceforge.net/projects/phpmailer/                     |
  9.  | ------------------------------------------------------------------------- |
  10.  |     Admin: Andy Prevost (project admininistrator)                         |
  11.  |   Authors: Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net |
  12.  |          : Marcus Bointon (coolbru) coolbru@users.sourceforge.net         |
  13.  |   Founder: Brent R. Matzelle (original founder)                           |
  14.  | Copyright (c) 2004-2009, Andy Prevost. All Rights Reserved.               |
  15.  | Copyright (c) 2001-2003, Brent R. Matzelle                                |
  16.  | ------------------------------------------------------------------------- |
  17.  |   License: Distributed under the Lesser General Public License (LGPL)     |
  18.  |            http://www.gnu.org/copyleft/lesser.html                        |
  19.  | This program is distributed in the hope that it will be useful - WITHOUT  |
  20.  | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     |
  21.  | FITNESS FOR A PARTICULAR PURPOSE.                                         |
  22.  | ------------------------------------------------------------------------- |
  23.  | We offer a number of paid services (www.worxware.com):                    |
  24.  | - Web Hosting on highly optimized fast and secure servers                 |
  25.  | - Technology Consulting                                                   |
  26.  | - Oursourcing (highly qualified programmers and graphic designers)        |
  27.  '---------------------------------------------------------------------------'
  28.  */
  29.  
  30. /**
  31.  * PHPMailer - PHP email transport class
  32.  * NOTE: Requires PHP version 5 or later
  33.  * @package linea21.externals
  34.  * @subpackage PHPMailer
  35.  * @author Andy Prevost
  36.  * @author Marcus Bointon
  37.  * @copyright 2004 - 2009 Andy Prevost
  38.  * @version $Id: class.phpmailer.php 447 2009-05-25 01:36:38Z codeworxtech $
  39.  * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
  40.  */
  41.  
  42. if (version_compare(PHP_VERSION'5.0.0''<') ) exit("Sorry, this version of PHPMailer will only run on PHP version 5 or greater!\n");
  43.  
  44. class PHPMailer {
  45.  
  46.   /////////////////////////////////////////////////
  47.   // PROPERTIES, PUBLIC
  48.   /////////////////////////////////////////////////
  49.  
  50.   /**
  51.    * Email priority (1 = High, 3 = Normal, 5 = low).
  52.    * @var int 
  53.    */
  54.   public $Priority          = 3;
  55.  
  56.   /**
  57.    * Sets the CharSet of the message.
  58.    * @var string 
  59.    */
  60.   public $CharSet           = 'iso-8859-1';
  61.  
  62.   /**
  63.    * Sets the Content-type of the message.
  64.    * @var string 
  65.    */
  66.   public $ContentType       = 'text/plain';
  67.  
  68.   /**
  69.    * Sets the Encoding of the message. Options for this are
  70.    *  "8bit", "7bit", "binary", "base64", and "quoted-printable".
  71.    * @var string 
  72.    */
  73.   public $Encoding          = '8bit';
  74.  
  75.   /**
  76.    * Holds the most recent mailer error message.
  77.    * @var string 
  78.    */
  79.   public $ErrorInfo         = '';
  80.  
  81.   /**
  82.    * Sets the From email address for the message.
  83.    * @var string 
  84.    */
  85.   public $From              = 'root@localhost';
  86.  
  87.   /**
  88.    * Sets the From name of the message.
  89.    * @var string 
  90.    */
  91.   public $FromName          = 'Root User';
  92.  
  93.   /**
  94.    * Sets the Sender email (Return-Path) of the message.  If not empty,
  95.    * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
  96.    * @var string 
  97.    */
  98.   public $Sender            = '';
  99.  
  100.   /**
  101.    * Sets the Subject of the message.
  102.    * @var string 
  103.    */
  104.   public $Subject           = '';
  105.  
  106.   /**
  107.    * Sets the Body of the message.  This can be either an HTML or text body.
  108.    * If HTML then run IsHTML(true).
  109.    * @var string 
  110.    */
  111.   public $Body              = '';
  112.  
  113.   /**
  114.    * Sets the text-only body of the message.  This automatically sets the
  115.    * email to multipart/alternative.  This body can be read by mail
  116.    * clients that do not have HTML email capability such as mutt. Clients
  117.    * that can read HTML will view the normal Body.
  118.    * @var string 
  119.    */
  120.   public $AltBody           = '';
  121.  
  122.   /**
  123.    * Sets word wrapping on the body of the message to a given number of
  124.    * characters.
  125.    * @var int 
  126.    */
  127.   public $WordWrap          = 0;
  128.  
  129.   /**
  130.    * Method to send mail: ("mail", "sendmail", or "smtp").
  131.    * @var string 
  132.    */
  133.   public $Mailer            = 'mail';
  134.  
  135.   /**
  136.    * Sets the path of the sendmail program.
  137.    * @var string 
  138.    */
  139.   public $Sendmail          = '/usr/sbin/sendmail';
  140.  
  141.   /**
  142.    * Path to PHPMailer plugins.  Useful if the SMTP class
  143.    * is in a different directory than the PHP include path.
  144.    * @var string 
  145.    */
  146.   public $PluginDir         = '';
  147.  
  148.   /**
  149.    * Sets the email address that a reading confirmation will be sent.
  150.    * @var string 
  151.    */
  152.   public $ConfirmReadingTo  = '';
  153.  
  154.   /**
  155.    * Sets the hostname to use in Message-Id and Received headers
  156.    * and as default HELO string. If empty, the value returned
  157.    * by SERVER_NAME is used or 'localhost.localdomain'.
  158.    * @var string 
  159.    */
  160.   public $Hostname          = '';
  161.  
  162.   /**
  163.    * Sets the message ID to be used in the Message-Id header.
  164.    * If empty, a unique id will be generated.
  165.    * @var string 
  166.    */
  167.   public $MessageID         = '';
  168.  
  169.   /////////////////////////////////////////////////
  170.   // PROPERTIES FOR SMTP
  171.   /////////////////////////////////////////////////
  172.  
  173.   /**
  174.    * Sets the SMTP hosts.  All hosts must be separated by a
  175.    * semicolon.  You can also specify a different port
  176.    * for each host by using this format: [hostname:port]
  177.    * (e.g. "smtp1.example.com:25;smtp2.example.com").
  178.    * Hosts will be tried in order.
  179.    * @var string 
  180.    */
  181.   public $Host          = 'localhost';
  182.  
  183.   /**
  184.    * Sets the default SMTP server port.
  185.    * @var int 
  186.    */
  187.   public $Port          = 25;
  188.  
  189.   /**
  190.    * Sets the SMTP HELO of the message (Default is $Hostname).
  191.    * @var string 
  192.    */
  193.   public $Helo          = '';
  194.  
  195.   /**
  196.    * Sets connection prefix.
  197.    * Options are "", "ssl" or "tls"
  198.    * @var string 
  199.    */
  200.   public $SMTPSecure    = '';
  201.  
  202.   /**
  203.    * Sets SMTP authentication. Utilizes the Username and Password variables.
  204.    * @var bool 
  205.    */
  206.   public $SMTPAuth      = false;
  207.  
  208.   /**
  209.    * Sets SMTP username.
  210.    * @var string 
  211.    */
  212.   public $Username      = '';
  213.  
  214.   /**
  215.    * Sets SMTP password.
  216.    * @var string 
  217.    */
  218.   public $Password      = '';
  219.  
  220.   /**
  221.    * Sets the SMTP server timeout in seconds.
  222.    * This function will not work with the win32 version.
  223.    * @var int 
  224.    */
  225.   public $Timeout       = 10;
  226.  
  227.   /**
  228.    * Sets SMTP class debugging on or off.
  229.    * @var bool 
  230.    */
  231.   public $SMTPDebug     = false;
  232.  
  233.   /**
  234.    * Prevents the SMTP connection from being closed after each mail
  235.    * sending.  If this is set to true then to close the connection
  236.    * requires an explicit call to SmtpClose().
  237.    * @var bool 
  238.    */
  239.   public $SMTPKeepAlive = false;
  240.  
  241.   /**
  242.    * Provides the ability to have the TO field process individual
  243.    * emails, instead of sending to entire TO addresses
  244.    * @var bool 
  245.    */
  246.   public $SingleTo      = false;
  247.  
  248.   /**
  249.    * If SingleTo is true, this provides the array to hold the email addresses
  250.    * @var bool 
  251.    */
  252.   public $SingleToArray = array();
  253.  
  254.   /**
  255.    * Provides the ability to change the line ending
  256.    * @var string 
  257.    */
  258.   public $LE              = "\n";
  259.  
  260.   /**
  261.    * Used with DKIM DNS Resource Record
  262.    * @var string 
  263.    */
  264.   public $DKIM_selector   = 'phpmailer';
  265.  
  266.   /**
  267.    * Used with DKIM DNS Resource Record
  268.    * optional, in format of email address 'you@yourdomain.com'
  269.    * @var string 
  270.    */
  271.   public $DKIM_identity   = '';
  272.  
  273.   /**
  274.    * Used with DKIM DNS Resource Record
  275.    * optional, in format of email address 'you@yourdomain.com'
  276.    * @var string 
  277.    */
  278.   public $DKIM_domain     = '';
  279.  
  280.   /**
  281.    * Used with DKIM DNS Resource Record
  282.    * optional, in format of email address 'you@yourdomain.com'
  283.    * @var string 
  284.    */
  285.   public $DKIM_private    = '';
  286.  
  287.   /**
  288.    * Callback Action function name
  289.    * the function that handles the result of the send email action. Parameters:
  290.    *   bool    $result        result of the send action
  291.    *   string  $to            email address of the recipient
  292.    *   string  $cc            cc email addresses
  293.    *   string  $bcc           bcc email addresses
  294.    *   string  $subject       the subject
  295.    *   string  $body          the email body
  296.    * @var string 
  297.    */
  298.   public $action_function = ''//'callbackAction';
  299.  
  300.   /**
  301.    * Sets the PHPMailer Version number
  302.    * @var string 
  303.    */
  304.   public $Version         = '5.1';
  305.  
  306.   /////////////////////////////////////////////////
  307.   // PROPERTIES, PRIVATE AND PROTECTED
  308.   /////////////////////////////////////////////////
  309.  
  310.   private   $smtp           NULL;
  311.   private   $to             array();
  312.   private   $cc             array();
  313.   private   $bcc            array();
  314.   private   $ReplyTo        array();
  315.   private   $all_recipients array();
  316.   private   $attachment     array();
  317.   private   $CustomHeader   array();
  318.   private   $message_type   '';
  319.   private   $boundary       array();
  320.   protected $language       = array();
  321.   private   $error_count    0;
  322.   private   $sign_cert_file "";
  323.   private   $sign_key_file  "";
  324.   private   $sign_key_pass  "";
  325.   private   $exceptions     false;
  326.  
  327.   /////////////////////////////////////////////////
  328.   // CONSTANTS
  329.   /////////////////////////////////////////////////
  330.  
  331.   const STOP_MESSAGE  0// message only, continue processing
  332.   const STOP_CONTINUE 1// message?, likely ok to continue processing
  333.   const STOP_CRITICAL 2// message, plus full stop, critical error reached
  334.  
  335.   /////////////////////////////////////////////////
  336.   // METHODS, VARIABLES
  337.   /////////////////////////////////////////////////
  338.  
  339.   /**
  340.    * Constructor
  341.    * @param boolean $exceptions Should we throw external exceptions?
  342.    */
  343.   public function __construct($exceptions false{
  344.     $this->exceptions ($exceptions == true);
  345.   }
  346.  
  347.   /**
  348.    * Sets message type to HTML.
  349.    * @param bool $ishtml 
  350.    * @return void 
  351.    */
  352.   public function IsHTML($ishtml true{
  353.     if ($ishtml{
  354.       $this->ContentType = 'text/html';
  355.     else {
  356.       $this->ContentType = 'text/plain';
  357.     }
  358.   }
  359.  
  360.   /**
  361.    * Sets Mailer to send message using SMTP.
  362.    * @return void 
  363.    */
  364.   public function IsSMTP({
  365.     $this->Mailer = 'smtp';
  366.   }
  367.  
  368.   /**
  369.    * Sets Mailer to send message using PHP mail() function.
  370.    * @return void 
  371.    */
  372.   public function IsMail({
  373.     $this->Mailer = 'mail';
  374.   }
  375.  
  376.   /**
  377.    * Sets Mailer to send message using the $Sendmail program.
  378.    * @return void 
  379.    */
  380.   public function IsSendmail({
  381.     if (!stristr(ini_get('sendmail_path')'sendmail')) {
  382.       $this->Sendmail = '/var/qmail/bin/sendmail';
  383.     }
  384.     $this->Mailer = 'sendmail';
  385.   }
  386.  
  387.   /**
  388.    * Sets Mailer to send message using the qmail MTA.
  389.    * @return void 
  390.    */
  391.   public function IsQmail({
  392.     if (stristr(ini_get('sendmail_path')'qmail')) {
  393.       $this->Sendmail = '/var/qmail/bin/sendmail';
  394.     }
  395.     $this->Mailer = 'sendmail';
  396.   }
  397.  
  398.   /////////////////////////////////////////////////
  399.   // METHODS, RECIPIENTS
  400.   /////////////////////////////////////////////////
  401.  
  402.   /**
  403.    * Adds a "To" address.
  404.    * @param string $address 
  405.    * @param string $name 
  406.    * @return boolean true on success, false if address already used
  407.    */
  408.   public function AddAddress($address$name ''{
  409.     return $this->AddAnAddress('to'$address$name);
  410.   }
  411.  
  412.   /**
  413.    * Adds a "Cc" address.
  414.    * Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
  415.    * @param string $address 
  416.    * @param string $name 
  417.    * @return boolean true on success, false if address already used
  418.    */
  419.   public function AddCC($address$name ''{
  420.     return $this->AddAnAddress('cc'$address$name);
  421.   }
  422.  
  423.   /**
  424.    * Adds a "Bcc" address.
  425.    * Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
  426.    * @param string $address 
  427.    * @param string $name 
  428.    * @return boolean true on success, false if address already used
  429.    */
  430.   public function AddBCC($address$name ''{
  431.     return $this->AddAnAddress('bcc'$address$name);
  432.   }
  433.  
  434.   /**
  435.    * Adds a "Reply-to" address.
  436.    * @param string $address 
  437.    * @param string $name 
  438.    * @return boolean 
  439.    */
  440.   public function AddReplyTo($address$name ''{
  441.     return $this->AddAnAddress('ReplyTo'$address$name);
  442.   }
  443.  
  444.   /**
  445.    * Adds an address to one of the recipient arrays
  446.    * Addresses that have been added already return false, but do not throw exceptions
  447.    * @param string $kind One of 'to', 'cc', 'bcc', 'ReplyTo'
  448.    * @param string $address The email address to send to
  449.    * @param string $name 
  450.    * @return boolean true on success, false if address already used or invalid in some way
  451.    * @access private
  452.    */
  453.   private function AddAnAddress($kind$address$name ''{
  454.     if (!preg_match('/^(to|cc|bcc|ReplyTo)$/'$kind)) {
  455.       echo 'Invalid recipient array: ' kind;
  456.       return false;
  457.     }
  458.     $address trim($address);
  459.     $name trim(preg_replace('/[\r\n]+/'''$name))//Strip breaks and trim
  460.     if (!self::ValidateAddress($address)) {
  461.       $this->SetError($this->Lang('invalid_address').': '$address);
  462.       if ($this->exceptions{
  463.         throw new phpmailerException($this->Lang('invalid_address').': '.$address);
  464.       }
  465.       echo $this->Lang('invalid_address').': '.$address;
  466.       return false;
  467.     }
  468.     if ($kind != 'ReplyTo'{
  469.       if (!isset($this->all_recipients[strtolower($address)])) {
  470.         array_push($this->$kindarray($address$name));
  471.         $this->all_recipients[strtolower($address)true;
  472.         return true;
  473.       }
  474.     else {
  475.       if (!array_key_exists(strtolower($address)$this->ReplyTo)) {
  476.         $this->ReplyTo[strtolower($address)array($address$name);
  477.         return true;
  478.       }
  479.     }
  480.     return false;
  481.   }
  482.  
  483.   /**
  484.    * Set the From and FromName properties
  485.    * @param string $address 
  486.    * @param string $name 
  487.    * @return boolean 
  488.    */
  489.   public function SetFrom($address$name '',$auto=1{
  490.     $address trim($address);
  491.     $name trim(preg_replace('/[\r\n]+/'''$name))//Strip breaks and trim
  492.     if (!self::ValidateAddress($address)) {
  493.       $this->SetError($this->Lang('invalid_address').': '$address);
  494.       if ($this->exceptions{
  495.         throw new phpmailerException($this->Lang('invalid_address').': '.$address);
  496.       }
  497.       echo $this->Lang('invalid_address').': '.$address;
  498.       return false;
  499.     }
  500.     $this->From = $address;
  501.     $this->FromName = $name;
  502.     if ($auto{
  503.       if (empty($this->ReplyTo)) {
  504.         $this->AddAnAddress('ReplyTo'$address$name);
  505.       }
  506.       if (empty($this->Sender)) {
  507.         $this->Sender = $address;
  508.       }
  509.     }
  510.     return true;
  511.   }
  512.  
  513.   /**
  514.    * Check that a string looks roughly like an email address should
  515.    * Static so it can be used without instantiation
  516.    * Tries to use PHP built-in validator in the filter extension (from PHP 5.2), falls back to a reasonably competent regex validator
  517.    * Conforms approximately to RFC2822
  518.    * @link http://www.hexillion.com/samples/#Regex Original pattern found here
  519.    * @param string $address The email address to check
  520.    * @return boolean 
  521.    * @static
  522.    * @access public
  523.    */
  524.   public static function ValidateAddress($address{
  525.     if (function_exists('filter_var')) //Introduced in PHP 5.2
  526.       if(filter_var($addressFILTER_VALIDATE_EMAIL=== FALSE{
  527.         return false;
  528.       else {
  529.         return true;
  530.       }
  531.     else {
  532.       return preg_match('/^(?:[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+\.)*[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+@(?:(?:(?:[a-zA-Z0-9_](?:[a-zA-Z0-9_\-](?!\.)){0,61}[a-zA-Z0-9_-]?\.)+[a-zA-Z0-9_](?:[a-zA-Z0-9_\-](?!$)){0,61}[a-zA-Z0-9_]?)|(?:\[(?:(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\]))$/'$address);
  533.     }
  534.   }
  535.  
  536.   /////////////////////////////////////////////////
  537.   // METHODS, MAIL SENDING
  538.   /////////////////////////////////////////////////
  539.  
  540.   /**
  541.    * Creates message and assigns Mailer. If the message is
  542.    * not sent successfully then it returns false.  Use the ErrorInfo
  543.    * variable to view description of the error.
  544.    * @return bool 
  545.    */
  546.   public function Send({
  547.     try {
  548.       if ((count($this->tocount($this->cccount($this->bcc)) 1{
  549.         throw new phpmailerException($this->Lang('provide_address')self::STOP_CRITICAL);
  550.       }
  551.  
  552.       // Set whether the message is multipart/alternative
  553.       if(!empty($this->AltBody)) {
  554.         $this->ContentType = 'multipart/alternative';
  555.       }
  556.  
  557.       $this->error_count 0// reset errors
  558.       $this->SetMessageType();
  559.       $header $this->CreateHeader();
  560.       $body $this->CreateBody();
  561.  
  562.       if (empty($this->Body)) {
  563.         throw new phpmailerException($this->Lang('empty_message')self::STOP_CRITICAL);
  564.       }
  565.  
  566.       // digitally sign with DKIM if enabled
  567.       if ($this->DKIM_domain && $this->DKIM_private{
  568.         $header_dkim $this->DKIM_Add($header,$this->Subject,$body);
  569.         $header str_replace("\r\n","\n",$header_dkim$header;
  570.       }
  571.  
  572.       // Choose the mailer and send through it
  573.       switch($this->Mailer{
  574.         case 'sendmail':
  575.           return $this->SendmailSend($header$body);
  576.         case 'smtp':
  577.           return $this->SmtpSend($header$body);
  578.         default:
  579.           return $this->MailSend($header$body);
  580.       }
  581.  
  582.     catch (phpmailerException $e{
  583.       $this->SetError($e->getMessage());
  584.       if ($this->exceptions{
  585.         throw $e;
  586.       }
  587.       echo $e->getMessage()."\n";
  588.       return false;
  589.     }
  590.   }
  591.  
  592.   /**
  593.    * Sends mail using the $Sendmail program.
  594.    * @param string $header The message headers
  595.    * @param string $body The message body
  596.    * @access protected
  597.    * @return bool 
  598.    */
  599.   protected function SendmailSend($header$body{
  600.     if ($this->Sender != ''{
  601.       $sendmail sprintf("%s -oi -f %s -t"escapeshellcmd($this->Sendmail)escapeshellarg($this->Sender));
  602.     else {
  603.       $sendmail sprintf("%s -oi -t"escapeshellcmd($this->Sendmail));
  604.     }
  605.     if ($this->SingleTo === true{
  606.       foreach ($this->SingleToArray as $key => $val{
  607.         if(!@$mail popen($sendmail'w')) {
  608.           throw new phpmailerException($this->Lang('execute'$this->Sendmailself::STOP_CRITICAL);
  609.         }
  610.         fputs($mail"To: " $val "\n");
  611.         fputs($mail$header);
  612.         fputs($mail$body);
  613.         $result pclose($mail);
  614.         // implement call back function if it exists
  615.         $isSent ($result == 00;
  616.         $this->doCallback($isSent,$val,$this->cc,$this->bcc,$this->Subject,$body);
  617.         if($result != 0{
  618.           throw new phpmailerException($this->Lang('execute'$this->Sendmailself::STOP_CRITICAL);
  619.         }
  620.       }
  621.     else {
  622.       if(!@$mail popen($sendmail'w')) {
  623.         throw new phpmailerException($this->Lang('execute'$this->Sendmailself::STOP_CRITICAL);
  624.       }
  625.       fputs($mail$header);
  626.       fputs($mail$body);
  627.       $result pclose($mail);
  628.       // implement call back function if it exists
  629.       $isSent ($result == 00;
  630.       $this->doCallback($isSent,$this->to,$this->cc,$this->bcc,$this->Subject,$body);
  631.       if($result != 0{
  632.         throw new phpmailerException($this->Lang('execute'$this->Sendmailself::STOP_CRITICAL);
  633.       }
  634.     }
  635.     return true;
  636.   }
  637.  
  638.   /**
  639.    * Sends mail using the PHP mail() function.
  640.    * @param string $header The message headers
  641.    * @param string $body The message body
  642.    * @access protected
  643.    * @return bool 
  644.    */
  645.   protected function MailSend($header$body{
  646.     $toArr array();
  647.     foreach($this->to as $t{
  648.       $toArr[$this->AddrFormat($t);
  649.     }
  650.     $to implode(', '$toArr);
  651.  
  652.     $params sprintf("-oi -f %s"$this->Sender);
  653.     if ($this->Sender != '' && strlen(ini_get('safe_mode'))1{
  654.       $old_from ini_get('sendmail_from');
  655.       ini_set('sendmail_from'$this->Sender);
  656.       if ($this->SingleTo === true && count($toArr1{
  657.         foreach ($toArr as $key => $val{
  658.           $rt @mail($val$this->EncodeHeader($this->SecureHeader($this->Subject))$body$header$params);
  659.           // implement call back function if it exists
  660.           $isSent ($rt == 10;
  661.           $this->doCallback($isSent,$val,$this->cc,$this->bcc,$this->Subject,$body);
  662.         }
  663.       else {
  664.         $rt @mail($to$this->EncodeHeader($this->SecureHeader($this->Subject))$body$header$params);
  665.         // implement call back function if it exists
  666.         $isSent ($rt == 10;
  667.         $this->doCallback($isSent,$to,$this->cc,$this->bcc,$this->Subject,$body);
  668.       }
  669.     else {
  670.       if ($this->SingleTo === true && count($toArr1{
  671.         foreach ($toArr as $key => $val{
  672.           $rt @mail($val$this->EncodeHeader($this->SecureHeader($this->Subject))$body$header$params);
  673.           // implement call back function if it exists
  674.           $isSent ($rt == 10;
  675.           $this->doCallback($isSent,$val,$this->cc,$this->bcc,$this->Subject,$body);
  676.         }
  677.       else {
  678.         $rt @mail($to$this->EncodeHeader($this->SecureHeader($this->Subject))$body$header);
  679.         // implement call back function if it exists
  680.         $isSent ($rt == 10;
  681.         $this->doCallback($isSent,$to,$this->cc,$this->bcc,$this->Subject,$body);
  682.       }
  683.     }
  684.     if (isset($old_from)) {
  685.       ini_set('sendmail_from'$old_from);
  686.     }
  687.     if(!$rt{
  688.       throw new phpmailerException($this->Lang('instantiate')self::STOP_CRITICAL);
  689.     }
  690.     return true;
  691.   }
  692.  
  693.   /**
  694.    * Sends mail via SMTP using PhpSMTP
  695.    * Returns false if there is a bad MAIL FROM, RCPT, or DATA input.
  696.    * @param string $header The message headers
  697.    * @param string $body The message body
  698.    * @uses SMTP
  699.    * @access protected
  700.    * @return bool 
  701.    */
  702.   protected function SmtpSend($header$body{
  703.     require_once $this->PluginDir . 'class.smtp.php';
  704.     $bad_rcpt array();
  705.  
  706.     if(!$this->SmtpConnect()) {
  707.       throw new phpmailerException($this->Lang('smtp_connect_failed')self::STOP_CRITICAL);
  708.     }
  709.     $smtp_from ($this->Sender == ''$this->From : $this->Sender;
  710.     if(!$this->smtp->Mail($smtp_from)) {
  711.       throw new phpmailerException($this->Lang('from_failed'$smtp_fromself::STOP_CRITICAL);
  712.     }
  713.  
  714.     // Attempt to send attach all recipients
  715.     foreach($this->to as $to{
  716.       if (!$this->smtp->Recipient($to[0])) {
  717.         $bad_rcpt[$to[0];
  718.         // implement call back function if it exists
  719.         $isSent 0;
  720.         $this->doCallback($isSent,$to[0],'','',$this->Subject,$body);
  721.       else {
  722.         // implement call back function if it exists
  723.         $isSent 1;
  724.         $this->doCallback($isSent,$to[0],'','',$this->Subject,$body);
  725.       }
  726.     }
  727.     foreach($this->cc as $cc{
  728.       if (!$this->smtp->Recipient($cc[0])) {
  729.         $bad_rcpt[$cc[0];
  730.         // implement call back function if it exists
  731.         $isSent 0;
  732.         $this->doCallback($isSent,'',$cc[0],'',$this->Subject,$body);
  733.       else {
  734.         // implement call back function if it exists
  735.         $isSent 1;
  736.         $this->doCallback($isSent,'',$cc[0],'',$this->Subject,$body);
  737.       }
  738.     }
  739.     foreach($this->bcc as $bcc{
  740.       if (!$this->smtp->Recipient($bcc[0])) {
  741.         $bad_rcpt[$bcc[0];
  742.         // implement call back function if it exists
  743.         $isSent 0;
  744.         $this->doCallback($isSent,'','',$bcc[0],$this->Subject,$body);
  745.       else {
  746.         // implement call back function if it exists
  747.         $isSent 1;
  748.         $this->doCallback($isSent,'','',$bcc[0],$this->Subject,$body);
  749.       }
  750.     }
  751.  
  752.  
  753.     if (count($bad_rcpt//Create error message for any bad addresses
  754.       $badaddresses implode(', '$bad_rcpt);
  755.       throw new phpmailerException($this->Lang('recipients_failed'$badaddresses);
  756.     }
  757.     if(!$this->smtp->Data($header $body)) {
  758.       throw new phpmailerException($this->Lang('data_not_accepted')self::STOP_CRITICAL);
  759.     }
  760.     if($this->SMTPKeepAlive == true{
  761.       $this->smtp->Reset();
  762.     }
  763.     return true;
  764.   }
  765.  
  766.   /**
  767.    * Initiates a connection to an SMTP server.
  768.    * Returns false if the operation failed.
  769.    * @uses SMTP
  770.    * @access public
  771.    * @return bool 
  772.    */
  773.   public function SmtpConnect({
  774.     if(is_null($this->smtp)) {
  775.       $this->smtp new SMTP();
  776.     }
  777.  
  778.     $this->smtp->do_debug $this->SMTPDebug;
  779.     $hosts explode(';'$this->Host);
  780.     $index 0;
  781.     $connection $this->smtp->Connected();
  782.  
  783.     // Retry while there is no connection
  784.     try {
  785.       while($index count($hosts&& !$connection{
  786.         $hostinfo array();
  787.         if (preg_match('/^(.+):([0-9]+)$/'$hosts[$index]$hostinfo)) {
  788.           $host $hostinfo[1];
  789.           $port $hostinfo[2];
  790.         else {
  791.           $host $hosts[$index];
  792.           $port $this->Port;
  793.         }
  794.  
  795.         $tls ($this->SMTPSecure == 'tls');
  796.         $ssl ($this->SMTPSecure == 'ssl');
  797.  
  798.         if ($this->smtp->Connect(($ssl 'ssl://':'').$host$port$this->Timeout)) {
  799.  
  800.           $hello ($this->Helo != '' $this->Helo : $this->ServerHostname());
  801.           $this->smtp->Hello($hello);
  802.  
  803.           if ($tls{
  804.             if (!$this->smtp->StartTLS()) {
  805.               throw new phpmailerException($this->Lang('tls'));
  806.             }
  807.  
  808.             //We must resend HELO after tls negotiation
  809.             $this->smtp->Hello($hello);
  810.           }
  811.  
  812.           $connection true;
  813.           if ($this->SMTPAuth{
  814.             if (!$this->smtp->Authenticate($this->Username$this->Password)) {
  815.               throw new phpmailerException($this->Lang('authenticate'));
  816.             }
  817.           }
  818.         }
  819.         $index++;
  820.         if (!$connection{
  821.           throw new phpmailerException($this->Lang('connect_host'));
  822.         }
  823.       }
  824.     catch (phpmailerException $e{
  825.       $this->smtp->Reset();
  826.       throw $e;
  827.     }
  828.     return true;
  829.   }
  830.  
  831.   /**
  832.    * Closes the active SMTP session if one exists.
  833.    * @return void 
  834.    */
  835.   public function SmtpClose({
  836.     if(!is_null($this->smtp)) {
  837.       if($this->smtp->Connected()) {
  838.         $this->smtp->Quit();
  839.         $this->smtp->Close();
  840.       }
  841.     }
  842.   }
  843.  
  844.   /**
  845.    * Sets the language for all class error messages.
  846.    * Returns false if it cannot load the language file.  The default language is English.
  847.    * @param string $langcode ISO 639-1 2-character language code (e.g. Portuguese: "br")
  848.    * @param string $lang_path Path to the language file directory
  849.    * @access public
  850.    */
  851.   function SetLanguage($langcode 'en'$lang_path 'language/'{
  852.     //Define full set of translatable strings
  853.     $PHPMAILER_LANG array(
  854.       'provide_address' => 'You must provide at least one recipient email address.',
  855.       'mailer_not_supported' => ' mailer is not supported.',
  856.       'execute' => 'Could not execute: ',
  857.       'instantiate' => 'Could not instantiate mail function.',
  858.       'authenticate' => 'SMTP Error: Could not authenticate.',
  859.       'from_failed' => 'The following From address failed: ',
  860.       'recipients_failed' => 'SMTP Error: The following recipients failed: ',
  861.       'data_not_accepted' => 'SMTP Error: Data not accepted.',
  862.       'connect_host' => 'SMTP Error: Could not connect to SMTP host.',
  863.       'file_access' => 'Could not access file: ',
  864.       'file_open' => 'File Error: Could not open file: ',
  865.       'encoding' => 'Unknown encoding: ',
  866.       'signing' => 'Signing Error: ',
  867.       'smtp_error' => 'SMTP server error: ',
  868.       'empty_message' => 'Message body empty',
  869.       'invalid_address' => 'Invalid address',
  870.       'variable_set' => 'Cannot set or reset variable: '
  871.       );
  872.       //Overwrite language-specific strings. This way we'll never have missing translations - no more "language string failed to load"!
  873.       $l true;
  874.       if ($langcode != 'en'//There is no English translation file
  875.         $l @include $lang_path.'phpmailer.lang-'.$langcode.'.php';
  876.       }
  877.       $this->language = $PHPMAILER_LANG;
  878.       return ($l == true)//Returns false if language not found
  879.   }
  880.  
  881.   /**
  882.    * Return the current array of language strings
  883.    * @return array 
  884.    */
  885.   public function GetTranslations({
  886.     return $this->language;
  887.   }
  888.  
  889.   /////////////////////////////////////////////////
  890.   // METHODS, MESSAGE CREATION
  891.   /////////////////////////////////////////////////
  892.  
  893.   /**
  894.    * Creates recipient headers.
  895.    * @access public
  896.    * @return string 
  897.    */
  898.   public function AddrAppend($type$addr{
  899.     $addr_str $type ': ';
  900.     $addresses array();
  901.     foreach ($addr as $a{
  902.       $addresses[$this->AddrFormat($a);
  903.     }
  904.     $addr_str .= implode(', '$addresses);
  905.     $addr_str .= $this->LE;
  906.  
  907.     return $addr_str;
  908.   }
  909.  
  910.   /**
  911.    * Formats an address correctly.
  912.    * @access public
  913.    * @return string 
  914.    */
  915.   public function AddrFormat($addr{
  916.     if (empty($addr[1])) {
  917.       return $this->SecureHeader($addr[0]);
  918.     else {
  919.       return $this->EncodeHeader($this->SecureHeader($addr[1])'phrase'" <" $this->SecureHeader($addr[0]">";
  920.     }
  921.   }
  922.  
  923.   /**
  924.    * Wraps message for use with mailers that do not
  925.    * automatically perform wrapping and for quoted-printable.
  926.    * Original written by philippe.
  927.    * @param string $message The message to wrap
  928.    * @param integer $length The line length to wrap to
  929.    * @param boolean $qp_mode Whether to run in Quoted-Printable mode
  930.    * @access public
  931.    * @return string 
  932.    */
  933.   public function WrapText($message$length$qp_mode false{
  934.     $soft_break ($qp_modesprintf(" =%s"$this->LE$this->LE;
  935.     // If utf-8 encoding is used, we will need to make sure we don't
  936.     // split multibyte characters when we wrap
  937.     $is_utf8 (strtolower($this->CharSet== "utf-8");
  938.  
  939.     $message $this->FixEOL($message);
  940.     if (substr($message-1== $this->LE{
  941.       $message substr($message0-1);
  942.     }
  943.  
  944.     $line explode($this->LE$message);
  945.     $message '';
  946.     for ($i=;$i count($line)$i++{
  947.       $line_part explode(' '$line[$i]);
  948.       $buf '';
  949.       for ($e 0$e<count($line_part)$e++{
  950.         $word $line_part[$e];
  951.         if ($qp_mode and (strlen($word$length)) {
  952.           $space_left $length strlen($buf1;
  953.           if ($e != 0{
  954.             if ($space_left 20{
  955.               $len $space_left;
  956.               if ($is_utf8{
  957.                 $len $this->UTF8CharBoundary($word$len);
  958.               elseif (substr($word$len 11== "="{
  959.                 $len--;
  960.               elseif (substr($word$len 21== "="{
  961.                 $len -= 2;
  962.               }
  963.               $part substr($word0$len);
  964.               $word substr($word$len);
  965.               $buf .= ' ' $part;
  966.               $message .= $buf sprintf("=%s"$this->LE);
  967.             else {
  968.               $message .= $buf $soft_break;
  969.             }
  970.             $buf '';
  971.           }
  972.           while (strlen($word0{
  973.             $len $length;
  974.             if ($is_utf8{
  975.               $len $this->UTF8CharBoundary($word$len);
  976.             elseif (substr($word$len 11== "="{
  977.               $len--;
  978.             elseif (substr($word$len 21== "="{
  979.               $len -= 2;
  980.             }
  981.             $part substr($word0$len);
  982.             $word substr($word$len);
  983.  
  984.             if (strlen($word0{
  985.               $message .= $part sprintf("=%s"$this->LE);
  986.             else {
  987.               $buf $part;
  988.             }
  989.           }
  990.         else {
  991.           $buf_o $buf;
  992.           $buf .= ($e == 0$word (' ' $word);
  993.  
  994.           if (strlen($buf$length and $buf_o != ''{
  995.             $message .= $buf_o $soft_break;
  996.             $buf $word;
  997.           }
  998.         }
  999.       }
  1000.       $message .= $buf $this->LE;
  1001.     }
  1002.  
  1003.     return $message;
  1004.   }
  1005.  
  1006.   /**
  1007.    * Finds last character boundary prior to maxLength in a utf-8
  1008.    * quoted (printable) encoded string.
  1009.    * Original written by Colin Brown.
  1010.    * @access public
  1011.    * @param string $encodedText utf-8 QP text
  1012.    * @param int    $maxLength   find last character boundary prior to this length
  1013.    * @return int 
  1014.    */
  1015.   public function UTF8CharBoundary($encodedText$maxLength{
  1016.     $foundSplitPos false;
  1017.     $lookBack 3;
  1018.     while (!$foundSplitPos{
  1019.       $lastChunk substr($encodedText$maxLength $lookBack$lookBack);
  1020.       $encodedCharPos strpos($lastChunk"=");
  1021.       if ($encodedCharPos !== false{
  1022.         // Found start of encoded character byte within $lookBack block.
  1023.         // Check the encoded byte value (the 2 chars after the '=')
  1024.         $hex substr($encodedText$maxLength $lookBack $encodedCharPos 12);
  1025.         $dec hexdec($hex);
  1026.         if ($dec 128// Single byte character.
  1027.           // If the encoded char was found at pos 0, it will fit
  1028.           // otherwise reduce maxLength to start of the encoded char
  1029.           $maxLength ($encodedCharPos == 0$maxLength :
  1030.           $maxLength ($lookBack $encodedCharPos);
  1031.           $foundSplitPos true;
  1032.         elseif ($dec >= 192// First byte of a multi byte character
  1033.           // Reduce maxLength to split at start of character
  1034.           $maxLength $maxLength ($lookBack $encodedCharPos);
  1035.           $foundSplitPos true;
  1036.         elseif ($dec 192// Middle byte of a multi byte character, look further back
  1037.           $lookBack += 3;
  1038.         }
  1039.       else {
  1040.         // No encoded character found
  1041.         $foundSplitPos true;
  1042.       }
  1043.     }
  1044.     return $maxLength;
  1045.   }
  1046.  
  1047.  
  1048.   /**
  1049.    * Set the body wrapping.
  1050.    * @access public
  1051.    * @return void 
  1052.    */
  1053.   public function SetWordWrap({
  1054.     if($this->WordWrap < 1{
  1055.       return;
  1056.     }
  1057.  
  1058.     switch($this->message_type{
  1059.       case 'alt':
  1060.       case 'alt_attachments':
  1061.         $this->AltBody = $this->WrapText($this->AltBody$this->WordWrap);
  1062.         break;
  1063.       default:
  1064.         $this->Body = $this->WrapText($this->Body$this->WordWrap);
  1065.         break;
  1066.     }
  1067.   }
  1068.  
  1069.   /**
  1070.    * Assembles message header.
  1071.    * @access public
  1072.    * @return string The assembled header
  1073.    */
  1074.   public function CreateHeader({
  1075.     $result '';
  1076.  
  1077.     // Set the boundaries
  1078.     $uniq_id md5(uniqid(time()));
  1079.     $this->boundary[1'b1_' $uniq_id;
  1080.     $this->boundary[2'b2_' $uniq_id;
  1081.  
  1082.     $result .= $this->HeaderLine('Date'self::RFCDate());
  1083.     if($this->Sender == ''{
  1084.       $result .= $this->HeaderLine('Return-Path'trim($this->From));
  1085.     else {
  1086.       $result .= $this->HeaderLine('Return-Path'trim($this->Sender));
  1087.     }
  1088.  
  1089.     // To be created automatically by mail()
  1090.     if($this->Mailer != 'mail'{
  1091.       if ($this->SingleTo === true{
  1092.         foreach($this->to as $t{
  1093.           $this->SingleToArray[$this->AddrFormat($t);
  1094.         }
  1095.       else {
  1096.         if(count($this->to0{
  1097.           $result .= $this->AddrAppend('To'$this->to);
  1098.         elseif (count($this->cc== 0{
  1099.           $result .= $this->HeaderLine('To''undisclosed-recipients:;');
  1100.         }
  1101.       }
  1102.     }
  1103.  
  1104.     $from array();
  1105.     $from[0][0trim($this->From);
  1106.     $from[0][1$this->FromName;
  1107.     $result .= $this->AddrAppend('From'$from);
  1108.  
  1109.     // sendmail and mail() extract Cc from the header before sending
  1110.     if(count($this->cc0{
  1111.       $result .= $this->AddrAppend('Cc'$this->cc);
  1112.     }
  1113.  
  1114.     // sendmail and mail() extract Bcc from the header before sending
  1115.     if((($this->Mailer == 'sendmail'|| ($this->Mailer == 'mail')) && (count($this->bcc0)) {
  1116.       $result .= $this->AddrAppend('Bcc'$this->bcc);
  1117.     }
  1118.  
  1119.     if(count($this->ReplyTo0{
  1120.       $result .= $this->AddrAppend('Reply-to'$this->ReplyTo);
  1121.     }
  1122.  
  1123.     // mail() sets the subject itself
  1124.     if($this->Mailer != 'mail'{
  1125.       $result .= $this->HeaderLine('Subject'$this->EncodeHeader($this->SecureHeader($this->Subject)));
  1126.     }
  1127.  
  1128.     if($this->MessageID != ''{
  1129.       $result .= $this->HeaderLine('Message-ID',$this->MessageID);
  1130.     else {
  1131.       $result .= sprintf("Message-ID: <%s@%s>%s"$uniq_id$this->ServerHostname()$this->LE);
  1132.     }
  1133.     $result .= $this->HeaderLine('X-Priority'$this->Priority);
  1134.     $result .= $this->HeaderLine('X-Mailer''PHPMailer '.$this->Version.' (phpmailer.sourceforge.net)');
  1135.  
  1136.     if($this->ConfirmReadingTo != ''{
  1137.       $result .= $this->HeaderLine('Disposition-Notification-To''<' trim($this->ConfirmReadingTo'>');
  1138.     }
  1139.  
  1140.     // Add custom headers
  1141.     for($index 0$index count($this->CustomHeader)$index++{
  1142.       $result .= $this->HeaderLine(trim($this->CustomHeader[$index][0])$this->EncodeHeader(trim($this->CustomHeader[$index][1])));
  1143.     }
  1144.     if (!$this->sign_key_file{
  1145.       $result .= $this->HeaderLine('MIME-Version''1.0');
  1146.       $result .= $this->GetMailMIME();
  1147.     }
  1148.  
  1149.     return $result;
  1150.   }
  1151.  
  1152.   /**
  1153.    * Returns the message MIME.
  1154.    * @access public
  1155.    * @return string 
  1156.    */
  1157.   public function GetMailMIME({
  1158.     $result '';
  1159.     switch($this->message_type{
  1160.       case 'plain':
  1161.         $result .= $this->HeaderLine('Content-Transfer-Encoding'$this->Encoding);
  1162.         $result .= sprintf("Content-Type: %s; charset=\"%s\""$this->ContentType$this->CharSet);
  1163.         break;
  1164.       case 'attachments':
  1165.       case 'alt_attachments':
  1166.         if($this->InlineImageExists()){
  1167.           $result .= sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s"'multipart/related'$this->LE$this->LE$this->boundary[1]$this->LE);
  1168.         else {
  1169.           $result .= $this->HeaderLine('Content-Type''multipart/mixed;');
  1170.           $result .= $this->TextLine("\tboundary=\"" $this->boundary[1'"');
  1171.         }
  1172.         break;
  1173.       case 'alt':
  1174.         $result .= $this->HeaderLine('Content-Type''multipart/alternative;');
  1175.         $result .= $this->TextLine("\tboundary=\"" $this->boundary[1'"');
  1176.         break;
  1177.     }
  1178.  
  1179.     if($this->Mailer != 'mail'{
  1180.       $result .= $this->LE.$this->LE;
  1181.     }
  1182.  
  1183.     return $result;
  1184.   }
  1185.  
  1186.   /**
  1187.    * Assembles the message body.  Returns an empty string on failure.
  1188.    * @access public
  1189.    * @return string The assembled message body
  1190.    */
  1191.   public function CreateBody({
  1192.     $body '';
  1193.  
  1194.     if ($this->sign_key_file{
  1195.       $body .= $this->GetMailMIME();
  1196.     }
  1197.  
  1198.     $this->SetWordWrap();
  1199.  
  1200.     switch($this->message_type{
  1201.       case 'alt':
  1202.         $body .= $this->GetBoundary($this->boundary[1]'''text/plain''');
  1203.         $body .= $this->EncodeString($this->AltBody$this->Encoding);
  1204.         $body .= $this->LE.$this->LE;
  1205.         $body .= $this->GetBoundary($this->boundary[1]'''text/html''');
  1206.         $body .= $this->EncodeString($this->Body$this->Encoding);
  1207.         $body .= $this->LE.$this->LE;
  1208.         $body .= $this->EndBoundary($this->boundary[1]);
  1209.         break;
  1210.       case 'plain':
  1211.         $body .= $this->EncodeString($this->Body$this->Encoding);
  1212.         break;
  1213.       case 'attachments':
  1214.         $body .= $this->GetBoundary($this->boundary[1]'''''');
  1215.         $body .= $this->EncodeString($this->Body$this->Encoding);
  1216.         $body .= $this->LE;
  1217.         $body .= $this->AttachAll();
  1218.         break;
  1219.       case 'alt_attachments':
  1220.         $body .= sprintf("--%s%s"$this->boundary[1]$this->LE);
  1221.         $body .= sprintf("Content-Type: %s;%s" "\tboundary=\"%s\"%s"'multipart/alternative'$this->LE$this->boundary[2]$this->LE.$this->LE);
  1222.         $body .= $this->GetBoundary($this->boundary[2]'''text/plain'''$this->LE// Create text body
  1223.         $body .= $this->EncodeString($this->AltBody$this->Encoding);
  1224.         $body .= $this->LE.$this->LE;
  1225.         $body .= $this->GetBoundary($this->boundary[2]'''text/html'''$this->LE// Create the HTML body
  1226.         $body .= $this->EncodeString($this->Body$this->Encoding);
  1227.         $body .= $this->LE.$this->LE;
  1228.         $body .= $this->EndBoundary($this->boundary[2]);
  1229.         $body .= $this->AttachAll();
  1230.         break;
  1231.     }
  1232.  
  1233.     if ($this->IsError()) {
  1234.       $body '';
  1235.     elseif ($this->sign_key_file{
  1236.       try {
  1237.         $file tempnam('''mail');
  1238.         file_put_contents($file$body)//TODO check this worked
  1239.         $signed tempnam("""signed");
  1240.         if (@openssl_pkcs7_sign($file$signed"file://".$this->sign_cert_filearray("file://".$this->sign_key_file$this->sign_key_pass)NULL)) {
  1241.           @unlink($file);
  1242.           @unlink($signed);
  1243.           $body file_get_contents($signed);
  1244.         else {
  1245.           @unlink($file);
  1246.           @unlink($signed);
  1247.           throw new phpmailerException($this->Lang("signing").openssl_error_string());
  1248.         }
  1249.       catch (phpmailerException $e{
  1250.         $body '';
  1251.         if ($this->exceptions{
  1252.           throw $e;
  1253.         }
  1254.       }
  1255.     }
  1256.  
  1257.     return $body;
  1258.   }
  1259.  
  1260.   /**
  1261.    * Returns the start of a message boundary.
  1262.    * @access private
  1263.    */
  1264.   private function GetBoundary($boundary$charSet$contentType$encoding{
  1265.     $result '';
  1266.     if($charSet == ''{
  1267.       $charSet $this->CharSet;
  1268.     }
  1269.     if($contentType == ''{
  1270.       $contentType $this->ContentType;
  1271.     }
  1272.     if($encoding == ''{
  1273.       $encoding $this->Encoding;
  1274.     }
  1275.     $result .= $this->TextLine('--' $boundary);
  1276.     $result .= sprintf("Content-Type: %s; charset = \"%s\""$contentType$charSet);
  1277.     $result .= $this->LE;
  1278.     $result .= $this->HeaderLine('Content-Transfer-Encoding'$encoding);
  1279.     $result .= $this->LE;
  1280.  
  1281.     return $result;
  1282.   }
  1283.  
  1284.   /**
  1285.    * Returns the end of a message boundary.
  1286.    * @access private
  1287.    */
  1288.   private function EndBoundary($boundary{
  1289.     return $this->LE . '--' $boundary '--' $this->LE;
  1290.   }
  1291.  
  1292.   /**
  1293.    * Sets the message type.
  1294.    * @access private
  1295.    * @return void 
  1296.    */
  1297.   private function SetMessageType({
  1298.     if(count($this->attachment&& strlen($this->AltBody1{
  1299.       $this->message_type 'plain';
  1300.     else {
  1301.       if(count($this->attachment0{
  1302.         $this->message_type 'attachments';
  1303.       }
  1304.       if(strlen($this->AltBody&& count($this->attachment1{
  1305.         $this->message_type 'alt';
  1306.       }
  1307.       if(strlen($this->AltBody&& count($this->attachment0{
  1308.         $this->message_type 'alt_attachments';
  1309.       }
  1310.     }
  1311.   }
  1312.  
  1313.   /**
  1314.    *  Returns a formatted header line.
  1315.    * @access public
  1316.    * @return string 
  1317.    */
  1318.   public function HeaderLine($name$value{
  1319.     return $name ': ' $value $this->LE;
  1320.   }
  1321.  
  1322.   /**
  1323.    * Returns a formatted mail line.
  1324.    * @access public
  1325.    * @return string 
  1326.    */
  1327.   public function TextLine($value{
  1328.     return $value $this->LE;
  1329.   }
  1330.  
  1331.   /////////////////////////////////////////////////
  1332.   // CLASS METHODS, ATTACHMENTS
  1333.   /////////////////////////////////////////////////
  1334.  
  1335.   /**
  1336.    * Adds an attachment from a path on the filesystem.
  1337.    * Returns false if the file could not be found
  1338.    * or accessed.
  1339.    * @param string $path Path to the attachment.
  1340.    * @param string $name Overrides the attachment name.
  1341.    * @param string $encoding File encoding (see $Encoding).
  1342.    * @param string $type File extension (MIME) type.
  1343.    * @return bool 
  1344.    */
  1345.   public function AddAttachment($path$name ''$encoding 'base64'$type 'application/octet-stream'{
  1346.     try {
  1347.       if !@is_file($path) ) {
  1348.         throw new phpmailerException($this->Lang('file_access'$pathself::STOP_CONTINUE);
  1349.       }
  1350.       $filename basename($path);
  1351.       if $name == '' {
  1352.         $name $filename;
  1353.       }
  1354.  
  1355.       $this->attachment[array(
  1356.       => $path,
  1357.       => $filename,
  1358.       => $name,
  1359.       => $encoding,
  1360.       => $type,
  1361.       => false,  // isStringAttachment
  1362.       => 'attachment',
  1363.       => 0
  1364.       );
  1365.  
  1366.     catch (phpmailerException $e{
  1367.       $this->SetError($e->getMessage());
  1368.       if ($this->exceptions{
  1369.         throw $e;
  1370.       }
  1371.       echo $e->getMessage()."\n";
  1372.       if $e->getCode(== self::STOP_CRITICAL {
  1373.         return false;
  1374.       }
  1375.     }
  1376.     return true;
  1377.   }
  1378.  
  1379.   /**
  1380.    * Return the current array of attachments
  1381.    * @return array 
  1382.    */
  1383.   public function GetAttachments({
  1384.     return $this->attachment;
  1385.   }
  1386.  
  1387.   /**
  1388.    * Attaches all fs, string, and binary attachments to the message.
  1389.    * Returns an empty string on failure.
  1390.    * @access private
  1391.    * @return string 
  1392.    */
  1393.   private function AttachAll({
  1394.     // Return text of body
  1395.     $mime array();
  1396.     $cidUniq array();
  1397.     $incl array();
  1398.  
  1399.     // Add all attachments
  1400.     foreach ($this->attachment as $attachment{
  1401.       // Check for string attachment
  1402.       $bString $attachment[5];
  1403.       if ($bString{
  1404.         $string $attachment[0];
  1405.       else {
  1406.         $path $attachment[0];
  1407.       }
  1408.  
  1409.       if (in_array($attachment[0]$incl)) continue}
  1410.       $filename    $attachment[1];
  1411.       $name        $attachment[2];
  1412.       $encoding    $attachment[3];
  1413.       $type        $attachment[4];
  1414.       $disposition $attachment[6];
  1415.       $cid         $attachment[7];
  1416.       $incl[]      $attachment[0];
  1417.       if $disposition == 'inline' && isset($cidUniq[$cid]) ) continue}
  1418.       $cidUniq[$cidtrue;
  1419.  
  1420.       $mime[sprintf("--%s%s"$this->boundary[1]$this->LE);
  1421.       $mime[sprintf("Content-Type: %s; name=\"%s\"%s"$type$this->EncodeHeader($this->SecureHeader($name))$this->LE);
  1422.       $mime[sprintf("Content-Transfer-Encoding: %s%s"$encoding$this->LE);
  1423.  
  1424.       if($disposition == 'inline'{
  1425.         $mime[sprintf("Content-ID: <%s>%s"$cid$this->LE);
  1426.       }
  1427.  
  1428.       $mime[sprintf("Content-Disposition: %s; filename=\"%s\"%s"$disposition$this->EncodeHeader($this->SecureHeader($name))$this->LE.$this->LE);
  1429.  
  1430.       // Encode as string attachment
  1431.       if($bString{
  1432.         $mime[$this->EncodeString($string$encoding);
  1433.         if($this->IsError()) {
  1434.           return '';
  1435.         }
  1436.         $mime[$this->LE.$this->LE;
  1437.       else {
  1438.         $mime[$this->EncodeFile($path$encoding);
  1439.         if($this->IsError()) {
  1440.           return '';
  1441.         }
  1442.         $mime[$this->LE.$this->LE;
  1443.       }
  1444.     }
  1445.  
  1446.     $mime[sprintf("--%s--%s"$this->boundary[1]$this->LE);
  1447.  
  1448.     return join(''$mime);
  1449.   }
  1450.  
  1451.   /**
  1452.    * Encodes attachment in requested format.
  1453.    * Returns an empty string on failure.
  1454.    * @param string $path The full path to the file
  1455.    * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
  1456.    * @see EncodeFile()
  1457.    * @access private
  1458.    * @return string 
  1459.    */
  1460.   private function EncodeFile($path$encoding 'base64'{
  1461.     try {
  1462.       if (!is_readable($path)) {
  1463.         throw new phpmailerException($this->Lang('file_open'$pathself::STOP_CONTINUE);
  1464.       }
  1465.       if (function_exists('get_magic_quotes')) {
  1466.         function get_magic_quotes({
  1467.           return false;
  1468.         }
  1469.       }
  1470.       if (PHP_VERSION 6{
  1471.         $magic_quotes get_magic_quotes_runtime();
  1472.         set_magic_quotes_runtime(0);
  1473.       }
  1474.       $file_buffer  file_get_contents($path);
  1475.       $file_buffer  $this->EncodeString($file_buffer$encoding);
  1476.       if (PHP_VERSION 6set_magic_quotes_runtime($magic_quotes)}
  1477.       return $file_buffer;
  1478.     catch (Exception $e{
  1479.       $this->SetError($e->getMessage());
  1480.       return '';
  1481.     }
  1482.   }
  1483.  
  1484.   /**
  1485.    * Encodes string to requested format.
  1486.    * Returns an empty string on failure.
  1487.    * @param string $str The text to encode
  1488.    * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
  1489.    * @access public
  1490.    * @return string 
  1491.    */
  1492.   public function EncodeString ($str$encoding 'base64'{
  1493.     $encoded '';
  1494.     switch(strtolower($encoding)) {
  1495.       case 'base64':
  1496.         $encoded chunk_split(base64_encode($str)76$this->LE);
  1497.         break;
  1498.       case '7bit':
  1499.       case '8bit':
  1500.         $encoded $this->FixEOL($str);
  1501.         //Make sure it ends with a line break
  1502.         if (substr($encoded-(strlen($this->LE))) != $this->LE)
  1503.         $encoded .= $this->LE;
  1504.         break;
  1505.       case 'binary':
  1506.         $encoded $str;
  1507.         break;
  1508.       case 'quoted-printable':
  1509.         $encoded $this->EncodeQP($str);
  1510.         break;
  1511.       default:
  1512.         $this->SetError($this->Lang('encoding'$encoding);
  1513.         break;
  1514.     }
  1515.     return $encoded;
  1516.   }
  1517.  
  1518.   /**
  1519.    * Encode a header string to best (shortest) of Q, B, quoted or none.
  1520.    * @access public
  1521.    * @return string 
  1522.    */
  1523.   public function EncodeHeader($str$position 'text'{
  1524.     $x 0;
  1525.  
  1526.     switch (strtolower($position)) {
  1527.       case 'phrase':
  1528.         if (!preg_match('/[\200-\377]/'$str)) {
  1529.           // Can't use addslashes as we don't know what value has magic_quotes_sybase
  1530.           $encoded addcslashes($str"\0..\37\177\\\"");
  1531.           if (($str == $encoded&& !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/'$str)) {
  1532.             return ($encoded);
  1533.           else {
  1534.             return ("\"$encoded\"");
  1535.           }
  1536.         }
  1537.         $x preg_match_all('/[^\040\041\043-\133\135-\176]/'$str$matches);
  1538.         break;
  1539.       case 'comment':
  1540.         $x preg_match_all('/[()"]/'$str$matches);
  1541.         // Fall-through
  1542.       case 'text':
  1543.       default:
  1544.         $x += preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/'$str$matches);
  1545.         break;
  1546.     }
  1547.  
  1548.     if ($x == 0{
  1549.       return ($str);
  1550.     }
  1551.  
  1552.     $maxlen 75 strlen($this->CharSet);
  1553.     // Try to select the encoding which should produce the shortest output
  1554.     if (strlen($str)/$x{
  1555.       $encoding 'B';
  1556.       if (function_exists('mb_strlen'&& $this->HasMultiBytes($str)) {
  1557.         // Use a custom function which correctly encodes and wraps long
  1558.         // multibyte strings without breaking lines within a character
  1559.         $encoded $this->Base64EncodeWrapMB($str);
  1560.       else {
  1561.         $encoded base64_encode($str);
  1562.         $maxlen -= $maxlen 4;
  1563.         $encoded trim(chunk_split($encoded$maxlen"\n"));
  1564.       }
  1565.     else {
  1566.       $encoding 'Q';
  1567.       $encoded $this->EncodeQ($str$position);
  1568.       $encoded $this->WrapText($encoded$maxlentrue);
  1569.       $encoded str_replace('='.$this->LE"\n"trim($encoded));
  1570.     }
  1571.  
  1572.     $encoded preg_replace('/^(.*)$/m'" =?".$this->CharSet."?$encoding?\\1?="$encoded);
  1573.     $encoded trim(str_replace("\n"$this->LE$encoded));
  1574.  
  1575.     return $encoded;
  1576.   }
  1577.  
  1578.   /**
  1579.    * Checks if a string contains multibyte characters.
  1580.    * @access public
  1581.    * @param string $str multi-byte text to wrap encode
  1582.    * @return bool 
  1583.    */
  1584.   public function HasMultiBytes($str{
  1585.     if (function_exists('mb_strlen')) {
  1586.       return (strlen($strmb_strlen($str$this->CharSet));
  1587.     else // Assume no multibytes (we can't handle without mbstring functions anyway)
  1588.       return false;
  1589.     }
  1590.   }
  1591.  
  1592.   /**
  1593.    * Correctly encodes and wraps long multibyte strings for mail headers
  1594.    * without breaking lines within a character.
  1595.    * Adapted from a function by paravoid at http://uk.php.net/manual/en/function.mb-encode-mimeheader.php
  1596.    * @access public
  1597.    * @param string $str multi-byte text to wrap encode
  1598.    * @return string 
  1599.    */
  1600.   public function Base64EncodeWrapMB($str{
  1601.     $start "=?".$this->CharSet."?B?";
  1602.     $end "?=";
  1603.     $encoded "";
  1604.  
  1605.     $mb_length mb_strlen($str$this->CharSet);
  1606.     // Each line must have length <= 75, including $start and $end
  1607.     $length 75 strlen($startstrlen($end);
  1608.     // Average multi-byte ratio
  1609.     $ratio $mb_length strlen($str);
  1610.     // Base64 has a 4:3 ratio
  1611.     $offset $avgLength floor($length $ratio .75);
  1612.  
  1613.     for ($i 0$i $mb_length$i += $offset{
  1614.       $lookBack 0;
  1615.  
  1616.       do {
  1617.         $offset $avgLength $lookBack;
  1618.         $chunk mb_substr($str$i$offset$this->CharSet);
  1619.         $chunk base64_encode($chunk);
  1620.         $lookBack++;
  1621.       }
  1622.       while (strlen($chunk$length);
  1623.  
  1624.       $encoded .= $chunk $this->LE;
  1625.     }
  1626.  
  1627.     // Chomp the last linefeed
  1628.     $encoded substr($encoded0-strlen($this->LE));
  1629.     return $encoded;
  1630.   }
  1631.  
  1632.   /**
  1633.    * Encode string to quoted-printable.
  1634.    * Only uses standard PHP, slow, but will always work
  1635.    * @access public
  1636.    * @param string $string the text to encode
  1637.    * @param integer $line_max Number of chars allowed on a line before wrapping
  1638.    * @return string 
  1639.    */
  1640.   public function EncodeQPphp$input ''$line_max 76$space_conv false{
  1641.     $hex array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
  1642.     $lines preg_split('/(?:\r\n|\r|\n)/'$input);
  1643.     $eol "\r\n";
  1644.     $escape '=';
  1645.     $output '';
  1646.     whilelist($lineeach($lines) ) {
  1647.       $linlen strlen($line);
  1648.       $newline '';
  1649.       for($i 0$i $linlen$i++{
  1650.         $c substr$line$i);
  1651.         $dec ord$c );
  1652.         if ( ( $i == && $dec == 46 ) ) // convert first point in the line into =2E
  1653.           $c '=2E';
  1654.         }
  1655.         if $dec == 32 {
  1656.           if $i == $linlen ) ) // convert space at eol only
  1657.             $c '=20';
  1658.           else if $space_conv {
  1659.             $c '=20';
  1660.           }
  1661.         elseif ( ($dec == 61|| ($dec 32 || ($dec 126) ) // always encode "\t", which is *not* required
  1662.           $h2 floor($dec/16);
  1663.           $h1 floor($dec%16);
  1664.           $c $escape.$hex[$h2].$hex[$h1];
  1665.         }
  1666.         if ( (strlen($newlinestrlen($c)) >= $line_max // CRLF is not counted
  1667.           $output .= $newline.$escape.$eol//  soft line break; " =\r\n" is okay
  1668.           $newline '';
  1669.           // check if newline first character will be point or not
  1670.           if $dec == 46 {
  1671.             $c '=2E';
  1672.           }
  1673.         }
  1674.         $newline .= $c;
  1675.       // end of for
  1676.       $output .= $newline.$eol;
  1677.     // end of while
  1678.     return $output;
  1679.   }
  1680.  
  1681.   /**
  1682.    * Encode string to RFC2045 (6.7) quoted-printable format
  1683.    * Uses a PHP5 stream filter to do the encoding about 64x faster than the old version
  1684.    * Also results in same content as you started with after decoding
  1685.    * @see EncodeQPphp()
  1686.    * @access public
  1687.    * @param string $string the text to encode
  1688.    * @param integer $line_max Number of chars allowed on a line before wrapping
  1689.    * @param boolean $space_conv Dummy param for compatibility with existing EncodeQP function
  1690.    * @return string 
  1691.    * @author Marcus Bointon
  1692.    */
  1693.   public function EncodeQP($string$line_max 76$space_conv false{
  1694.     if (function_exists('quoted_printable_encode')) //Use native function if it's available (>= PHP5.3)
  1695.       return quoted_printable_encode($string);
  1696.     }
  1697.     $filters stream_get_filters();
  1698.     if (!in_array('convert.*'$filters)) //Got convert stream filter?
  1699.       return $this->EncodeQPphp($string$line_max$space_conv)//Fall back to old implementation
  1700.     }
  1701.     $fp fopen('php://temp/''r+');
  1702.     $string preg_replace('/\r\n?/'$this->LE$string)//Normalise line breaks
  1703.     $params array('line-length' => $line_max'line-break-chars' => $this->LE);
  1704.     $s stream_filter_append($fp'convert.quoted-printable-encode'STREAM_FILTER_READ$params);
  1705.     fputs($fp$string);
  1706.     rewind($fp);
  1707.     $out stream_get_contents($fp);
  1708.     $out preg_replace('/^\./m''=2E'$out)//Encode . if it is first char on a line, workaround for bug in Exchange
  1709.     fclose($fp);
  1710.     return $out;
  1711.   }
  1712.  
  1713.   /**
  1714.    * Encode string to q encoding.
  1715.    * @link http://tools.ietf.org/html/rfc2047
  1716.    * @param string $str the text to encode
  1717.    * @param string $position Where the text is going to be used, see the RFC for what that means
  1718.    * @access public
  1719.    * @return string 
  1720.    */
  1721.   public function EncodeQ ($str$position 'text'{
  1722.     // There should not be any EOL in the string
  1723.     $encoded preg_replace('/[\r\n]*/'''$str);
  1724.  
  1725.     switch (strtolower($position)) {
  1726.       case 'phrase':
  1727.         $encoded preg_replace("/([^A-Za-z0-9!*+\/ -])/e""'='.sprintf('%02X', ord('\\1'))"$encoded);
  1728.         break;
  1729.       case 'comment':
  1730.         $encoded preg_replace("/([\(\)\"])/e""'='.sprintf('%02X', ord('\\1'))"$encoded);
  1731.       case 'text':
  1732.       default:
  1733.         // Replace every high ascii, control =, ? and _ characters
  1734.         //TODO using /e (equivalent to eval()) is probably not a good idea
  1735.         $encoded preg_replace('/([\000-\011\013\014\016-\037\075\077\137\177-\377])/e',
  1736.               "'='.sprintf('%02X', ord('\\1'))"$encoded);
  1737.         break;
  1738.     }
  1739.  
  1740.     // Replace every spaces to _ (more readable than =20)
  1741.     $encoded str_replace(' ''_'$encoded);
  1742.  
  1743.     return $encoded;
  1744.   }
  1745.  
  1746.   /**
  1747.    * Adds a string or binary attachment (non-filesystem) to the list.
  1748.    * This method can be used to attach ascii or binary data,
  1749.    * such as a BLOB record from a database.
  1750.    * @param string $string String attachment data.
  1751.    * @param string $filename Name of the attachment.
  1752.    * @param string $encoding File encoding (see $Encoding).
  1753.    * @param string $type File extension (MIME) type.
  1754.    * @return void 
  1755.    */
  1756.   public function AddStringAttachment($string$filename$encoding 'base64'$type 'application/octet-stream'{
  1757.     // Append to $attachment array
  1758.     $this->attachment[array(
  1759.     => $string,
  1760.     => $filename,
  1761.     => basename($filename),
  1762.     => $encoding,
  1763.     => $type,
  1764.     => true,  // isStringAttachment
  1765.     => 'attachment',
  1766.     => 0
  1767.     );
  1768.   }
  1769.  
  1770.   /**
  1771.    * Adds an embedded attachment.  This can include images, sounds, and
  1772.    * just about any other document.  Make sure to set the $type to an
  1773.    * image type.  For JPEG images use "image/jpeg" and for GIF images
  1774.    * use "image/gif".
  1775.    * @param string $path Path to the attachment.
  1776.    * @param string $cid Content ID of the attachment.  Use this to identify
  1777.    *         the Id for accessing the image in an HTML form.
  1778.    * @param string $name Overrides the attachment name.
  1779.    * @param string $encoding File encoding (see $Encoding).
  1780.    * @param string $type File extension (MIME) type.
  1781.    * @return bool 
  1782.    */
  1783.   public function AddEmbeddedImage($path$cid$name ''$encoding 'base64'$type 'application/octet-stream'{
  1784.  
  1785.     if !@is_file($path) ) {
  1786.       $this->SetError($this->Lang('file_access'$path);
  1787.       return false;
  1788.     }
  1789.  
  1790.     $filename basename($path);
  1791.     if $name == '' {
  1792.       $name $filename;
  1793.     }
  1794.  
  1795.     // Append to $attachment array
  1796.     $this->attachment[array(
  1797.     => $path,
  1798.     => $filename,
  1799.     => $name,
  1800.     => $encoding,
  1801.     => $type,
  1802.     => false,  // isStringAttachment
  1803.     => 'inline',
  1804.     => $cid
  1805.     );
  1806.  
  1807.     return true;
  1808.   }
  1809.  
  1810.   /**
  1811.    * Returns true if an inline attachment is present.
  1812.    * @access public
  1813.    * @return bool 
  1814.    */
  1815.   public function InlineImageExists({
  1816.     foreach($this->attachment as $attachment{
  1817.       if ($attachment[6== 'inline'{
  1818.         return true;
  1819.       }
  1820.     }
  1821.     return false;
  1822.   }
  1823.  
  1824.   /////////////////////////////////////////////////
  1825.   // CLASS METHODS, MESSAGE RESET
  1826.   /////////////////////////////////////////////////
  1827.  
  1828.   /**
  1829.    * Clears all recipients assigned in the TO array.  Returns void.
  1830.    * @return void 
  1831.    */
  1832.   public function ClearAddresses({
  1833.     foreach($this->to as $to{
  1834.       unset($this->all_recipients[strtolower($to[0])]);
  1835.     }
  1836.     $this->to array();
  1837.   }
  1838.  
  1839.   /**
  1840.    * Clears all recipients assigned in the CC array.  Returns void.
  1841.    * @return void 
  1842.    */
  1843.   public function ClearCCs({
  1844.     foreach($this->cc as $cc{
  1845.       unset($this->all_recipients[strtolower($cc[0])]);
  1846.     }
  1847.     $this->cc array();
  1848.   }
  1849.  
  1850.   /**
  1851.    * Clears all recipients assigned in the BCC array.  Returns void.
  1852.    * @return void 
  1853.    */
  1854.   public function ClearBCCs({
  1855.     foreach($this->bcc as $bcc{
  1856.       unset($this->all_recipients[strtolower($bcc[0])]);
  1857.     }
  1858.     $this->bcc array();
  1859.   }
  1860.  
  1861.   /**
  1862.    * Clears all recipients assigned in the ReplyTo array.  Returns void.
  1863.    * @return void 
  1864.    */
  1865.   public function ClearReplyTos({
  1866.     $this->ReplyTo array();
  1867.   }
  1868.  
  1869.   /**
  1870.    * Clears all recipients assigned in the TO, CC and BCC
  1871.    * array.  Returns void.
  1872.    * @return void 
  1873.    */
  1874.   public function ClearAllRecipients({
  1875.     $this->to array();
  1876.     $this->cc array();
  1877.     $this->bcc array();
  1878.     $this->all_recipients array();
  1879.   }
  1880.  
  1881.   /**
  1882.    * Clears all previously set filesystem, string, and binary
  1883.    * attachments.  Returns void.
  1884.    * @return void 
  1885.    */
  1886.   public function ClearAttachments({
  1887.     $this->attachment array();
  1888.   }
  1889.  
  1890.   /**
  1891.    * Clears all custom headers.  Returns void.
  1892.    * @return void 
  1893.    */
  1894.   public function ClearCustomHeaders({
  1895.     $this->CustomHeader array();
  1896.   }
  1897.  
  1898.   /////////////////////////////////////////////////
  1899.   // CLASS METHODS, MISCELLANEOUS
  1900.   /////////////////////////////////////////////////
  1901.  
  1902.   /**
  1903.    * Adds the error message to the error container.
  1904.    * @access protected
  1905.    * @return void 
  1906.    */
  1907.   protected function SetError($msg{
  1908.     $this->error_count++;
  1909.     if ($this->Mailer == 'smtp' and !is_null($this->smtp)) {
  1910.       $lasterror $this->smtp->getError();
  1911.       if (!empty($lasterrorand array_key_exists('smtp_msg'$lasterror)) {
  1912.         $msg .= '<p>' $this->Lang('smtp_error'$lasterror['smtp_msg'"</p>\n";
  1913.       }
  1914.     }
  1915.     $this->ErrorInfo = $msg;
  1916.   }
  1917.  
  1918.   /**
  1919.    * Returns the proper RFC 822 formatted date.
  1920.    * @access public
  1921.    * @return string 
  1922.    * @static
  1923.    */
  1924.   public static function RFCDate({
  1925.     $tz date('Z');
  1926.     $tzs ($tz 0'-' '+';
  1927.     $tz abs($tz);
  1928.     $tz = (int)($tz/3600)*100 ($tz%3600)/60;
  1929.     $result sprintf("%s %s%04d"date('D, j M Y H:i:s')$tzs$tz);
  1930.  
  1931.     return $result;
  1932.   }
  1933.  
  1934.   /**
  1935.    * Returns the server hostname or 'localhost.localdomain' if unknown.
  1936.    * @access private
  1937.    * @return string 
  1938.    */
  1939.   private function ServerHostname({
  1940.     if (!empty($this->Hostname)) {
  1941.       $result $this->Hostname;
  1942.     elseif (isset($_SERVER['SERVER_NAME'])) {
  1943.       $result $_SERVER['SERVER_NAME'];
  1944.     else {
  1945.       $result 'localhost.localdomain';
  1946.     }
  1947.  
  1948.     return $result;
  1949.   }
  1950.  
  1951.   /**
  1952.    * Returns a message in the appropriate language.
  1953.    * @access private
  1954.    * @return string 
  1955.    */
  1956.   private function Lang($key{
  1957.     if(count($this->language1{
  1958.       $this->SetLanguage('en')// set the default language
  1959.     }
  1960.  
  1961.     if(isset($this->language[$key])) {
  1962.       return $this->language[$key];
  1963.     else {
  1964.       return 'Language string failed to load: ' $key;
  1965.     }
  1966.   }
  1967.  
  1968.   /**
  1969.    * Returns true if an error occurred.
  1970.    * @access public
  1971.    * @return bool 
  1972.    */
  1973.   public function IsError({
  1974.     return ($this->error_count 0);
  1975.   }
  1976.  
  1977.   /**
  1978.    * Changes every end of line from CR or LF to CRLF.
  1979.    * @access private
  1980.    * @return string 
  1981.    */
  1982.   private function FixEOL($str{
  1983.     $str str_replace("\r\n""\n"$str);
  1984.     $str str_replace("\r""\n"$str);
  1985.     $str str_replace("\n"$this->LE$str);
  1986.     return $str;
  1987.   }
  1988.  
  1989.   /**
  1990.    * Adds a custom header.
  1991.    * @access public
  1992.    * @return void 
  1993.    */
  1994.   public function AddCustomHeader($custom_header{
  1995.     $this->CustomHeader[explode(':'$custom_header2);
  1996.   }
  1997.  
  1998.   /**
  1999.    * Evaluates the message and returns modifications for inline images and backgrounds
  2000.    * @access public
  2001.    * @return $message 
  2002.    */
  2003.   public function MsgHTML($message$basedir ''{
  2004.     preg_match_all("/(src|background)=\"(.*)\"/Ui"$message$images);
  2005.     if(isset($images[2])) {
  2006.       foreach($images[2as $i => $url{
  2007.         // do not change urls for absolute images (thanks to corvuscorax)
  2008.         if (!preg_match('#^[A-z]+://#',$url)) {
  2009.           $filename basename($url);
  2010.           $directory dirname($url);
  2011.           ($directory == '.')?$directory='':'';
  2012.           $cid 'cid:' md5($filename);
  2013.           $ext pathinfo($filenamePATHINFO_EXTENSION);
  2014.           $mimeType  self::_mime_types($ext);
  2015.           if strlen($basedir&& substr($basedir,-1!= '/'$basedir .= '/'}
  2016.           if strlen($directory&& substr($directory,-1!= '/'$directory .= '/'}
  2017.           if $this->AddEmbeddedImage($basedir.$directory.$filenamemd5($filename)$filename'base64',$mimeType) ) {
  2018.             $message preg_replace("/".$images[1][$i]."=\"".preg_quote($url'/')."\"/Ui"$images[1][$i]."=\"".$cid."\""$message);
  2019.           }
  2020.         }
  2021.       }
  2022.     }
  2023.     $this->IsHTML(true);
  2024.     $this->Body = $message;
  2025.     $textMsg trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/\\1>/s','',$message)));
  2026.     if (!empty($textMsg&& empty($this->AltBody)) {
  2027.       $this->AltBody = html_entity_decode($textMsg);
  2028.     }
  2029.     if (empty($this->AltBody)) {
  2030.       $this->AltBody = 'To view this email message, open it in a program that understands HTML!' "\n\n";
  2031.     }
  2032.   }
  2033.  
  2034.   /**
  2035.    * Gets the MIME type of the embedded or inline image
  2036.    * @param string File extension
  2037.    * @access public
  2038.    * @return string MIME type of ext
  2039.    * @static
  2040.    */
  2041.   public static function _mime_types($ext ''{
  2042.     $mimes array(
  2043.       'hqx'   =>  'application/mac-binhex40',
  2044.       'cpt'   =>  'application/mac-compactpro',
  2045.       'doc'   =>  'application/msword',
  2046.       'bin'   =>  'application/macbinary',
  2047.       'dms'   =>  'application/octet-stream',
  2048.       'lha'   =>  'application/octet-stream',
  2049.       'lzh'   =>  'application/octet-stream',
  2050.       'exe'   =>  'application/octet-stream',
  2051.       'class' =>  'application/octet-stream',
  2052.       'psd'   =>  'application/octet-stream',
  2053.       'so'    =>  'application/octet-stream',
  2054.       'sea'   =>  'application/octet-stream',
  2055.       'dll'   =>  'application/octet-stream',
  2056.       'oda'   =>  'application/oda',
  2057.       'pdf'   =>  'application/pdf',
  2058.       'ai'    =>  'application/postscript',
  2059.       'eps'   =>  'application/postscript',
  2060.       'ps'    =>  'application/postscript',
  2061.       'smi'   =>  'application/smil',
  2062.       'smil'  =>  'application/smil',
  2063.       'mif'   =>  'application/vnd.mif',
  2064.       'xls'   =>  'application/vnd.ms-excel',
  2065.       'ppt'   =>  'application/vnd.ms-powerpoint',
  2066.       'wbxml' =>  'application/vnd.wap.wbxml',
  2067.       'wmlc'  =>  'application/vnd.wap.wmlc',
  2068.       'dcr'   =>  'application/x-director',
  2069.       'dir'   =>  'application/x-director',
  2070.       'dxr'   =>  'application/x-director',
  2071.       'dvi'   =>  'application/x-dvi',
  2072.       'gtar'  =>  'application/x-gtar',
  2073.       'php'   =>  'application/x-httpd-php',
  2074.       'php4'  =>  'application/x-httpd-php',
  2075.       'php3'  =>  'application/x-httpd-php',
  2076.       'phtml' =>  'application/x-httpd-php',
  2077.       'phps'  =>  'application/x-httpd-php-source',
  2078.       'js'    =>  'application/x-javascript',
  2079.       'swf'   =>  'application/x-shockwave-flash',
  2080.       'sit'   =>  'application/x-stuffit',
  2081.       'tar'   =>  'application/x-tar',
  2082.       'tgz'   =>  'application/x-tar',
  2083.       'xhtml' =>  'application/xhtml+xml',
  2084.       'xht'   =>  'application/xhtml+xml',
  2085.       'zip'   =>  'application/zip',
  2086.       'mid'   =>  'audio/midi',
  2087.       'midi'  =>  'audio/midi',
  2088.       'mpga'  =>  'audio/mpeg',
  2089.       'mp2'   =>  'audio/mpeg',
  2090.       'mp3'   =>  'audio/mpeg',
  2091.       'aif'   =>  'audio/x-aiff',
  2092.       'aiff'  =>  'audio/x-aiff',
  2093.       'aifc'  =>  'audio/x-aiff',
  2094.       'ram'   =>  'audio/x-pn-realaudio',
  2095.       'rm'    =>  'audio/x-pn-realaudio',
  2096.       'rpm'   =>  'audio/x-pn-realaudio-plugin',
  2097.       'ra'    =>  'audio/x-realaudio',
  2098.       'rv'    =>  'video/vnd.rn-realvideo',
  2099.       'wav'   =>  'audio/x-wav',
  2100.       'bmp'   =>  'image/bmp',
  2101.       'gif'   =>  'image/gif',
  2102.       'jpeg'  =>  'image/jpeg',
  2103.       'jpg'   =>  'image/jpeg',
  2104.       'jpe'   =>  'image/jpeg',
  2105.       'png'   =>  'image/png',
  2106.       'tiff'  =>  'image/tiff',
  2107.       'tif'   =>  'image/tiff',
  2108.       'css'   =>  'text/css',
  2109.       'html'  =>  'text/html',
  2110.       'htm'   =>  'text/html',
  2111.       'shtml' =>  'text/html',
  2112.       'txt'   =>  'text/plain',
  2113.       'text'  =>  'text/plain',
  2114.       'log'   =>  'text/plain',
  2115.       'rtx'   =>  'text/richtext',
  2116.       'rtf'   =>  'text/rtf',
  2117.       'xml'   =>  'text/xml',
  2118.       'xsl'   =>  'text/xml',
  2119.       'mpeg'  =>  'video/mpeg',
  2120.       'mpg'   =>  'video/mpeg',
  2121.       'mpe'   =>  'video/mpeg',
  2122.       'qt'    =>  'video/quicktime',
  2123.       'mov'   =>  'video/quicktime',
  2124.       'avi'   =>  'video/x-msvideo',
  2125.       'movie' =>  'video/x-sgi-movie',
  2126.       'doc'   =>  'application/msword',
  2127.       'word'  =>  'application/msword',
  2128.       'xl'    =>  'application/excel',
  2129.       'eml'   =>  'message/rfc822'
  2130.       );
  2131.       return (!isset($mimes[strtolower($ext)])) 'application/octet-stream' $mimes[strtolower($ext)];
  2132.   }
  2133.  
  2134.   /**
  2135.    * Set (or reset) Class Objects (variables)
  2136.    *
  2137.    * Usage Example:
  2138.    * $page->set('X-Priority', '3');
  2139.    *
  2140.    * @access public
  2141.    * @param string $name Parameter Name
  2142.    * @param mixed $value Parameter Value
  2143.    *  NOTE: will not work with arrays, there are no arrays to set/reset
  2144.    * @todo Should this not be using __set() magic function?
  2145.    */
  2146.   public function set($name$value ''{
  2147.     try {
  2148.       if (isset($this->$name) ) {
  2149.         $this->$name $value;
  2150.       else {
  2151.         throw new phpmailerException($this->Lang('variable_set'$nameself::STOP_CRITICAL);
  2152.       }
  2153.     catch (Exception $e{
  2154.       $this->SetError($e->getMessage());
  2155.       if ($e->getCode(== self::STOP_CRITICAL{
  2156.         return false;
  2157.       }
  2158.     }
  2159.     return true;
  2160.   }
  2161.  
  2162.   /**
  2163.    * Strips newlines to prevent header injection.
  2164.    * @access public
  2165.    * @param string $str String
  2166.    * @return string 
  2167.    */
  2168.   public function SecureHeader($str{
  2169.     $str str_replace("\r"''$str);
  2170.     $str str_replace("\n"''$str);
  2171.     return trim($str);
  2172.   }
  2173.  
  2174.   /**
  2175.    * Set the private key file and password to sign the message.
  2176.    *
  2177.    * @access public
  2178.    * @param string $key_filename Parameter File Name
  2179.    * @param string $key_pass Password for private key
  2180.    */
  2181.   public function Sign($cert_filename$key_filename$key_pass{
  2182.     $this->sign_cert_file $cert_filename;
  2183.     $this->sign_key_file $key_filename;
  2184.     $this->sign_key_pass $key_pass;
  2185.   }
  2186.  
  2187.   /**
  2188.    * Set the private key file and password to sign the message.
  2189.    *
  2190.    * @access public
  2191.    * @param string $key_filename Parameter File Name
  2192.    * @param string $key_pass Password for private key
  2193.    */
  2194.   public function DKIM_QP($txt{
  2195.     $tmp="";
  2196.     $line="";
  2197.     for ($i=0;$i<strlen($txt);$i++{
  2198.       $ord=ord($txt[$i]);
  2199.       if ( ((0x21 <= $ord&& ($ord <= 0x3A)) || $ord == 0x3C || ((0x3E <= $ord&& ($ord <= 0x7E)) ) {
  2200.         $line.=$txt[$i];
  2201.       else {
  2202.         $line.="=".sprintf("%02X",$ord);
  2203.       }
  2204.     }
  2205.     return $line;
  2206.   }
  2207.  
  2208.   /**
  2209.    * Generate DKIM signature
  2210.    *
  2211.    * @access public
  2212.    * @param string $s Header
  2213.    */
  2214.   public function DKIM_Sign($s{
  2215.     $privKeyStr file_get_contents($this->DKIM_private);
  2216.     if ($this->DKIM_passphrase!=''{
  2217.       $privKey openssl_pkey_get_private($privKeyStr,$this->DKIM_passphrase);
  2218.     else {
  2219.       $privKey $privKeyStr;
  2220.     }
  2221.     if (openssl_sign($s$signature$privKey)) {
  2222.       return base64_encode($signature);
  2223.     }
  2224.   }
  2225.  
  2226.   /**
  2227.    * Generate DKIM Canonicalization Header
  2228.    *
  2229.    * @access public
  2230.    * @param string $s Header
  2231.    */
  2232.   public function DKIM_HeaderC($s{
  2233.     $s=preg_replace("/\r\n\s+/"," ",$s);
  2234.     $lines=explode("\r\n",$s);
  2235.     foreach ($lines as $key=>$line{
  2236.       list($heading,$value)=explode(":",$line,2);
  2237.       $heading=strtolower($heading);
  2238.       $value=preg_replace("/\s+/"," ",$value// Compress useless spaces
  2239.       $lines[$key]=$heading.":".trim($value// Don't forget to remove WSP around the value
  2240.     }
  2241.     $s=implode("\r\n",$lines);
  2242.     return $s;
  2243.   }
  2244.  
  2245.   /**
  2246.    * Generate DKIM Canonicalization Body
  2247.    *
  2248.    * @access public
  2249.    * @param string $body Message Body
  2250.    */
  2251.   public function DKIM_BodyC($body{
  2252.     if ($body == ''return "\r\n";
  2253.     // stabilize line endings
  2254.     $body=str_replace("\r\n","\n",$body);
  2255.     $body=str_replace("\n","\r\n",$body);
  2256.     // END stabilize line endings
  2257.     while (substr($body,strlen($body)-4,4== "\r\n\r\n"{
  2258.       $body=substr($body,0,strlen($body)-2);
  2259.     }
  2260.     return $body;
  2261.   }
  2262.  
  2263.   /**
  2264.    * Create the DKIM header, body, as new header
  2265.    *
  2266.    * @access public
  2267.    * @param string $headers_line Header lines
  2268.    * @param string $subject Subject
  2269.    * @param string $body Body
  2270.    */
  2271.   public function DKIM_Add($headers_line,$subject,$body{
  2272.     $DKIMsignatureType    'rsa-sha1'// Signature & hash algorithms
  2273.     $DKIMcanonicalization 'relaxed/simple'// Canonicalization of header/body
  2274.     $DKIMquery            'dns/txt'// Query method
  2275.     $DKIMtime             time(// Signature Timestamp = seconds since 00:00:00 - Jan 1, 1970 (UTC time zone)
  2276.     $subject_header       "Subject: $subject";
  2277.     $headers              explode("\r\n",$headers_line);
  2278.     foreach($headers as $header{
  2279.       if (strpos($header,'From:'=== 0{
  2280.         $from_header=$header;
  2281.       elseif (strpos($header,'To:'=== 0{
  2282.         $to_header=$header;
  2283.       }
  2284.     }
  2285.     $from     str_replace('|','=7C',$this->DKIM_QP($from_header));
  2286.     $to       str_replace('|','=7C',$this->DKIM_QP($to_header));
  2287.     $subject  str_replace('|','=7C',$this->DKIM_QP($subject_header)) // Copied header fields (dkim-quoted-printable
  2288.     $body     $this->DKIM_BodyC($body);
  2289.     $DKIMlen  strlen($body// Length of body
  2290.     $DKIMb64  base64_encode(pack("H*"sha1($body))) // Base64 of packed binary SHA-1 hash of body
  2291.     $ident    ($this->DKIM_identity == '')'' " i=" $this->DKIM_identity . ";";
  2292.     $dkimhdrs "DKIM-Signature: v=1; a=" $DKIMsignatureType "; q=" $DKIMquery "; l=" $DKIMlen "; s=" $this->DKIM_selector . ";\r\n".
  2293.                 "\tt=" $DKIMtime "; c=" $DKIMcanonicalization ";\r\n".
  2294.                 "\th=From:To:Subject;\r\n".
  2295.                 "\td=" $this->DKIM_domain . ";" $ident "\r\n".
  2296.                 "\tz=$from\r\n".
  2297.                 "\t|$to\r\n".
  2298.                 "\t|$subject;\r\n".
  2299.                 "\tbh=" $DKIMb64 ";\r\n".
  2300.                 "\tb=";
  2301.     $toSign   $this->DKIM_HeaderC($from_header "\r\n" $to_header "\r\n" $subject_header "\r\n" $dkimhdrs);
  2302.     $signed   $this->DKIM_Sign($toSign);
  2303.     return "X-PHPMAILER-DKIM: phpmailer.worxware.com\r\n".$dkimhdrs.$signed."\r\n";
  2304.   }
  2305.  
  2306.   protected function doCallback($isSent,$to,$cc,$bcc,$subject,$body{
  2307.     if (!empty($this->action_function&& function_exists($this->action_function)) {
  2308.       $params array($isSent,$to,$cc,$bcc,$subject,$body);
  2309.       call_user_func_array($this->action_function,$params);
  2310.     }
  2311.   }
  2312. }
  2313.  
  2314. class phpmailerException extends Exception {
  2315.   public function errorMessage({
  2316.     $errorMsg '<strong>' $this->getMessage("</strong><br />\n";
  2317.     return $errorMsg;
  2318.   }
  2319. }
  2320. ?>

Documentation generated on Thu, 20 Mar 2014 16:46:35 +0100 by phpDocumentor 1.4.1