2 /*~ class.phpmailer.php
3 .---------------------------------------------------------------------------.
4 | Software: PHPMailer - PHP email class |
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 '---------------------------------------------------------------------------'
31 * PHPMailer - PHP email transport class
32 * NOTE: Requires PHP version 5 or later
34 * @author Andy Prevost
35 * @author Marcus Bointon
36 * @copyright 2004 - 2009 Andy Prevost
37 * @version $Id: class.phpmailer.php 447 2009-05-25 01:36:38Z codeworxtech $
38 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
41 if (version_compare(PHP_VERSION
, '5.0.0', '<') ) exit("Sorry, this version of PHPMailer will only run on PHP version 5 or greater!\n");
45 /////////////////////////////////////////////////
47 /////////////////////////////////////////////////
50 * Email priority (1 = High, 3 = Normal, 5 = low).
56 * Sets the CharSet of the message.
59 public $CharSet = 'iso-8859-1';
62 * Sets the Content-type of the message.
65 public $ContentType = 'text/plain';
68 * Sets the Encoding of the message. Options for this are
69 * "8bit", "7bit", "binary", "base64", and "quoted-printable".
72 public $Encoding = '8bit';
75 * Holds the most recent mailer error message.
78 public $ErrorInfo = '';
81 * Sets the From email address for the message.
84 public $From = 'root@localhost';
87 * Sets the From name of the message.
90 public $FromName = 'Root User';
93 * Sets the Sender email (Return-Path) of the message. If not empty,
94 * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
100 * Sets the Subject of the message.
103 public $Subject = '';
106 * Sets the Body of the message. This can be either an HTML or text body.
107 * If HTML then run IsHTML(true).
113 * Sets the text-only body of the message. This automatically sets the
114 * email to multipart/alternative. This body can be read by mail
115 * clients that do not have HTML email capability such as mutt. Clients
116 * that can read HTML will view the normal Body.
119 public $AltBody = '';
122 * Sets word wrapping on the body of the message to a given number of
126 public $WordWrap = 0;
129 * Method to send mail: ("mail", "sendmail", or "smtp").
132 public $Mailer = 'mail';
135 * Sets the path of the sendmail program.
138 public $Sendmail = '/usr/sbin/sendmail';
141 * Path to PHPMailer plugins. Useful if the SMTP class
142 * is in a different directory than the PHP include path.
145 public $PluginDir = '';
148 * Sets the email address that a reading confirmation will be sent.
151 public $ConfirmReadingTo = '';
154 * Sets the hostname to use in Message-Id and Received headers
155 * and as default HELO string. If empty, the value returned
156 * by SERVER_NAME is used or 'localhost.localdomain'.
159 public $Hostname = '';
162 * Sets the message ID to be used in the Message-Id header.
163 * If empty, a unique id will be generated.
166 public $MessageID = '';
168 /////////////////////////////////////////////////
169 // PROPERTIES FOR SMTP
170 /////////////////////////////////////////////////
173 * Sets the SMTP hosts. All hosts must be separated by a
174 * semicolon. You can also specify a different port
175 * for each host by using this format: [hostname:port]
176 * (e.g. "smtp1.example.com:25;smtp2.example.com").
177 * Hosts will be tried in order.
180 public $Host = 'localhost';
183 * Sets the default SMTP server port.
189 * Sets the SMTP HELO of the message (Default is $Hostname).
195 * Sets connection prefix.
196 * Options are "", "ssl" or "tls"
199 public $SMTPSecure = '';
202 * Sets SMTP authentication. Utilizes the Username and Password variables.
205 public $SMTPAuth = false;
208 * Sets SMTP username.
211 public $Username = '';
214 * Sets SMTP password.
217 public $Password = '';
220 * Sets the SMTP server timeout in seconds.
221 * This function will not work with the win32 version.
224 public $Timeout = 60;
227 * Sets SMTP class debugging on or off.
230 public $SMTPDebug = false;
233 * Prevents the SMTP connection from being closed after each mail
234 * sending. If this is set to true then to close the connection
235 * requires an explicit call to SmtpClose().
238 public $SMTPKeepAlive = false;
241 * Provides the ability to have the TO field process individual
242 * emails, instead of sending to entire TO addresses
245 public $SingleTo = false;
248 * If SingleTo is true, this provides the array to hold the email addresses
251 public $SingleToArray = array();
254 * Provides the ability to change the line ending
260 * Used with DKIM DNS Resource Record
263 public $DKIM_selector = 'phpmailer';
266 * Used with DKIM DNS Resource Record
267 * optional, in format of email address 'you@yourdomain.com'
270 public $DKIM_identity = '';
273 * Used with DKIM DNS Resource Record
274 * optional, in format of email address 'you@yourdomain.com'
277 public $DKIM_domain = '';
280 * Used with DKIM DNS Resource Record
281 * optional, in format of email address 'you@yourdomain.com'
284 public $DKIM_private = '';
287 * Callback Action function name
288 * the function that handles the result of the send email action. Parameters:
289 * bool $result result of the send action
290 * string $to email address of the recipient
291 * string $cc cc email addresses
292 * string $bcc bcc email addresses
293 * string $subject the subject
294 * string $body the email body
297 public $action_function = ''; //'callbackAction';
300 * Sets the PHPMailer Version number
303 public $Version = '5.1';
305 /////////////////////////////////////////////////
306 // PROPERTIES, PRIVATE AND PROTECTED
307 /////////////////////////////////////////////////
309 private $smtp = NULL;
310 private $to = array();
311 private $cc = array();
312 private $bcc = array();
313 private $ReplyTo = array();
314 private $all_recipients = array();
315 private $attachment = array();
316 private $CustomHeader = array();
317 private $message_type = '';
318 private $boundary = array();
319 protected $language = array();
320 private $error_count = 0;
321 private $sign_cert_file = "";
322 private $sign_key_file = "";
323 private $sign_key_pass = "";
324 private $exceptions = false;
326 /////////////////////////////////////////////////
328 /////////////////////////////////////////////////
330 const STOP_MESSAGE
= 0; // message only, continue processing
331 const STOP_CONTINUE
= 1; // message?, likely ok to continue processing
332 const STOP_CRITICAL
= 2; // message, plus full stop, critical error reached
334 /////////////////////////////////////////////////
335 // METHODS, VARIABLES
336 /////////////////////////////////////////////////
340 * @param boolean $exceptions Should we throw external exceptions?
342 public function __construct($exceptions = false) {
343 $this->exceptions
= ($exceptions == true);
347 * Sets message type to HTML.
348 * @param bool $ishtml
351 public function IsHTML($ishtml = true) {
353 $this->ContentType
= 'text/html';
355 $this->ContentType
= 'text/plain';
360 * Sets Mailer to send message using SMTP.
363 public function IsSMTP() {
364 $this->Mailer
= 'smtp';
368 * Sets Mailer to send message using PHP mail() function.
371 public function IsMail() {
372 $this->Mailer
= 'mail';
376 * Sets Mailer to send message using the $Sendmail program.
379 public function IsSendmail() {
380 if (!stristr(ini_get('sendmail_path'), 'sendmail')) {
381 $this->Sendmail
= '/var/qmail/bin/sendmail';
383 $this->Mailer
= 'sendmail';
387 * Sets Mailer to send message using the qmail MTA.
390 public function IsQmail() {
391 if (stristr(ini_get('sendmail_path'), 'qmail')) {
392 $this->Sendmail
= '/var/qmail/bin/sendmail';
394 $this->Mailer
= 'sendmail';
397 /////////////////////////////////////////////////
398 // METHODS, RECIPIENTS
399 /////////////////////////////////////////////////
402 * Adds a "To" address.
403 * @param string $address
404 * @param string $name
405 * @return boolean true on success, false if address already used
407 public function AddAddress($address, $name = '') {
408 return $this->AddAnAddress('to', $address, $name);
412 * Adds a "Cc" address.
413 * Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
414 * @param string $address
415 * @param string $name
416 * @return boolean true on success, false if address already used
418 public function AddCC($address, $name = '') {
419 return $this->AddAnAddress('cc', $address, $name);
423 * Adds a "Bcc" address.
424 * Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
425 * @param string $address
426 * @param string $name
427 * @return boolean true on success, false if address already used
429 public function AddBCC($address, $name = '') {
430 return $this->AddAnAddress('bcc', $address, $name);
434 * Adds a "Reply-to" address.
435 * @param string $address
436 * @param string $name
439 public function AddReplyTo($address, $name = '') {
440 return $this->AddAnAddress('ReplyTo', $address, $name);
444 * Adds an address to one of the recipient arrays
445 * Addresses that have been added already return false, but do not throw exceptions
446 * @param string $kind One of 'to', 'cc', 'bcc', 'ReplyTo'
447 * @param string $address The email address to send to
448 * @param string $name
449 * @return boolean true on success, false if address already used or invalid in some way
452 private function AddAnAddress($kind, $address, $name = '') {
453 if (!preg_match('/^(to|cc|bcc|ReplyTo)$/', $kind)) {
454 echo 'Invalid recipient array: ' . kind
;
457 $address = trim($address);
458 $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
459 if (!self
::ValidateAddress($address)) {
460 $this->SetError($this->Lang('invalid_address').': '. $address);
461 if ($this->exceptions
) {
462 throw new phpmailerException($this->Lang('invalid_address').': '.$address);
464 echo $this->Lang('invalid_address').': '.$address;
467 if ($kind != 'ReplyTo') {
468 if (!isset($this->all_recipients
[strtolower($address)])) {
469 array_push($this->$kind, array($address, $name));
470 $this->all_recipients
[strtolower($address)] = true;
474 if (!array_key_exists(strtolower($address), $this->ReplyTo
)) {
475 $this->ReplyTo
[strtolower($address)] = array($address, $name);
483 * Set the From and FromName properties
484 * @param string $address
485 * @param string $name
488 public function SetFrom($address, $name = '',$auto=1) {
489 $address = trim($address);
490 $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
491 if (!self
::ValidateAddress($address)) {
492 $this->SetError($this->Lang('invalid_address').': '. $address);
493 if ($this->exceptions
) {
494 throw new phpmailerException($this->Lang('invalid_address').': '.$address);
496 echo $this->Lang('invalid_address').': '.$address;
499 $this->From
= $address;
500 $this->FromName
= $name;
502 if (empty($this->ReplyTo
)) {
503 $this->AddAnAddress('ReplyTo', $address, $name);
505 if (empty($this->Sender
)) {
506 $this->Sender
= $address;
513 * Check that a string looks roughly like an email address should
514 * Static so it can be used without instantiation
515 * Tries to use PHP built-in validator in the filter extension (from PHP 5.2), falls back to a reasonably competent regex validator
516 * Conforms approximately to RFC2822
517 * @link http://www.hexillion.com/samples/#Regex Original pattern found here
518 * @param string $address The email address to check
523 public static function ValidateAddress($address) {
524 if (function_exists('filter_var')) { //Introduced in PHP 5.2
525 if(filter_var($address, FILTER_VALIDATE_EMAIL
) === FALSE) {
531 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);
535 /////////////////////////////////////////////////
536 // METHODS, MAIL SENDING
537 /////////////////////////////////////////////////
540 * Creates message and assigns Mailer. If the message is
541 * not sent successfully then it returns false. Use the ErrorInfo
542 * variable to view description of the error.
545 public function Send() {
547 if ((count($this->to
) +
count($this->cc
) +
count($this->bcc
)) < 1) {
548 throw new phpmailerException($this->Lang('provide_address'), self
::STOP_CRITICAL
);
551 // Set whether the message is multipart/alternative
552 if(!empty($this->AltBody
)) {
553 $this->ContentType
= 'multipart/alternative';
556 $this->error_count
= 0; // reset errors
557 $this->SetMessageType();
558 $header = $this->CreateHeader();
559 $body = $this->CreateBody();
561 if (empty($this->Body
)) {
562 throw new phpmailerException($this->Lang('empty_message'), self
::STOP_CRITICAL
);
565 // digitally sign with DKIM if enabled
566 if ($this->DKIM_domain
&& $this->DKIM_private
) {
567 $header_dkim = $this->DKIM_Add($header,$this->Subject
,$body);
568 $header = str_replace("\r\n","\n",$header_dkim) . $header;
571 // Choose the mailer and send through it
572 switch($this->Mailer
) {
574 return $this->SendmailSend($header, $body);
576 return $this->SmtpSend($header, $body);
578 return $this->MailSend($header, $body);
581 } catch (phpmailerException
$e) {
582 $this->SetError($e->getMessage());
583 if ($this->exceptions
) {
586 echo $e->getMessage()."\n";
592 * Sends mail using the $Sendmail program.
593 * @param string $header The message headers
594 * @param string $body The message body
598 protected function SendmailSend($header, $body) {
599 if ($this->Sender
!= '') {
600 $sendmail = sprintf("%s -oi -f %s -t", escapeshellcmd($this->Sendmail
), escapeshellarg($this->Sender
));
602 $sendmail = sprintf("%s -oi -t", escapeshellcmd($this->Sendmail
));
605 if ($this->SingleTo
=== true) {
606 foreach ($this->SingleToArray
as $key => $val) {
607 $mail = new ExecFuture('%C', $sendmail);
608 $mail->write("To: {$val}\n", true);
609 $mail->write($header.$body);
613 $mail = new ExecFuture('%C', $sendmail);
614 $mail->write($header.$body);
622 * Sends mail using the PHP mail() function.
623 * @param string $header The message headers
624 * @param string $body The message body
628 protected function MailSend($header, $body) {
630 foreach($this->to
as $t) {
631 $toArr[] = $this->AddrFormat($t);
633 $to = implode(', ', $toArr);
635 $params = sprintf("-oi -f %s", $this->Sender
);
636 if ($this->Sender
!= '' && strlen(ini_get('safe_mode'))< 1) {
637 $old_from = ini_get('sendmail_from');
638 ini_set('sendmail_from', $this->Sender
);
639 if ($this->SingleTo
=== true && count($toArr) > 1) {
640 foreach ($toArr as $key => $val) {
641 $rt = @mail
($val, $this->EncodeHeader($this->SecureHeader($this->Subject
)), $body, $header, $params);
642 // implement call back function if it exists
643 $isSent = ($rt == 1) ?
1 : 0;
644 $this->doCallback($isSent,$val,$this->cc
,$this->bcc
,$this->Subject
,$body);
647 $rt = @mail
($to, $this->EncodeHeader($this->SecureHeader($this->Subject
)), $body, $header, $params);
648 // implement call back function if it exists
649 $isSent = ($rt == 1) ?
1 : 0;
650 $this->doCallback($isSent,$to,$this->cc
,$this->bcc
,$this->Subject
,$body);
653 if ($this->SingleTo
=== true && count($toArr) > 1) {
654 foreach ($toArr as $key => $val) {
655 $rt = @mail
($val, $this->EncodeHeader($this->SecureHeader($this->Subject
)), $body, $header, $params);
656 // implement call back function if it exists
657 $isSent = ($rt == 1) ?
1 : 0;
658 $this->doCallback($isSent,$val,$this->cc
,$this->bcc
,$this->Subject
,$body);
661 $rt = @mail
($to, $this->EncodeHeader($this->SecureHeader($this->Subject
)), $body, $header);
662 // implement call back function if it exists
663 $isSent = ($rt == 1) ?
1 : 0;
664 $this->doCallback($isSent,$to,$this->cc
,$this->bcc
,$this->Subject
,$body);
667 if (isset($old_from)) {
668 ini_set('sendmail_from', $old_from);
671 throw new phpmailerException($this->Lang('instantiate'), self
::STOP_CRITICAL
);
677 * Sends mail via SMTP using PhpSMTP
678 * Returns false if there is a bad MAIL FROM, RCPT, or DATA input.
679 * @param string $header The message headers
680 * @param string $body The message body
685 protected function SmtpSend($header, $body) {
686 require_once $this->PluginDir
. 'class.smtp.php';
689 if(!$this->SmtpConnect()) {
690 throw new phpmailerException($this->Lang('smtp_connect_failed'), self
::STOP_CRITICAL
);
692 $smtp_from = ($this->Sender
== '') ?
$this->From
: $this->Sender
;
693 if(!$this->smtp
->Mail($smtp_from)) {
694 throw new phpmailerException($this->Lang('from_failed') . $smtp_from, self
::STOP_CRITICAL
);
697 // Attempt to send attach all recipients
698 foreach($this->to
as $to) {
699 if (!$this->smtp
->Recipient($to[0])) {
700 $bad_rcpt[] = $to[0];
701 // implement call back function if it exists
703 $this->doCallback($isSent,$to[0],'','',$this->Subject
,$body);
705 // implement call back function if it exists
707 $this->doCallback($isSent,$to[0],'','',$this->Subject
,$body);
710 foreach($this->cc
as $cc) {
711 if (!$this->smtp
->Recipient($cc[0])) {
712 $bad_rcpt[] = $cc[0];
713 // implement call back function if it exists
715 $this->doCallback($isSent,'',$cc[0],'',$this->Subject
,$body);
717 // implement call back function if it exists
719 $this->doCallback($isSent,'',$cc[0],'',$this->Subject
,$body);
722 foreach($this->bcc
as $bcc) {
723 if (!$this->smtp
->Recipient($bcc[0])) {
724 $bad_rcpt[] = $bcc[0];
725 // implement call back function if it exists
727 $this->doCallback($isSent,'','',$bcc[0],$this->Subject
,$body);
729 // implement call back function if it exists
731 $this->doCallback($isSent,'','',$bcc[0],$this->Subject
,$body);
736 if (count($bad_rcpt) > 0 ) { //Create error message for any bad addresses
737 $badaddresses = implode(', ', $bad_rcpt);
738 throw new phpmailerException($this->Lang('recipients_failed') . $badaddresses);
740 if(!$this->smtp
->Data($header . $body)) {
741 throw new phpmailerException($this->Lang('data_not_accepted'), self
::STOP_CRITICAL
);
743 if($this->SMTPKeepAlive
== true) {
744 $this->smtp
->Reset();
750 * Initiates a connection to an SMTP server.
751 * Returns false if the operation failed.
756 public function SmtpConnect() {
757 if(is_null($this->smtp
)) {
758 $this->smtp
= new SMTP();
761 $this->smtp
->do_debug
= $this->SMTPDebug
;
762 $hosts = explode(';', $this->Host
);
764 $connection = $this->smtp
->Connected();
766 // Retry while there is no connection
768 while($index < count($hosts) && !$connection) {
770 if (preg_match('/^(.+):([0-9]+)$/', $hosts[$index], $hostinfo)) {
771 $host = $hostinfo[1];
772 $port = $hostinfo[2];
774 $host = $hosts[$index];
778 $tls = ($this->SMTPSecure
== 'tls');
779 $ssl = ($this->SMTPSecure
== 'ssl');
781 if ($this->smtp
->Connect(($ssl ?
'ssl://':'').$host, $port, $this->Timeout
)) {
783 $hello = ($this->Helo
!= '' ?
$this->Helo
: $this->ServerHostname());
784 $this->smtp
->Hello($hello);
787 if (!$this->smtp
->StartTLS()) {
788 throw new phpmailerException($this->Lang('tls'));
791 //We must resend HELO after tls negotiation
792 $this->smtp
->Hello($hello);
796 if ($this->SMTPAuth
) {
797 if (!$this->smtp
->Authenticate($this->Username
, $this->Password
)) {
798 throw new phpmailerException($this->Lang('authenticate'));
804 throw new phpmailerException($this->Lang('connect_host'));
807 } catch (phpmailerException
$e) {
808 $this->smtp
->Reset();
815 * Closes the active SMTP session if one exists.
818 public function SmtpClose() {
819 if(!is_null($this->smtp
)) {
820 if($this->smtp
->Connected()) {
822 $this->smtp
->Close();
828 * Sets the language for all class error messages.
829 * Returns false if it cannot load the language file. The default language is English.
830 * @param string $langcode ISO 639-1 2-character language code (e.g. Portuguese: "br")
831 * @param string $lang_path Path to the language file directory
834 function SetLanguage($langcode = 'en', $lang_path = 'language/') {
835 //Define full set of translatable strings
836 $PHPMAILER_LANG = array(
837 'provide_address' => 'You must provide at least one recipient email address.',
838 'mailer_not_supported' => ' mailer is not supported.',
839 'execute' => 'Could not execute: ',
840 'instantiate' => 'Could not instantiate mail function.',
841 'authenticate' => 'SMTP Error: Could not authenticate.',
842 'from_failed' => 'The following From address failed: ',
843 'recipients_failed' => 'SMTP Error: The following recipients failed: ',
844 'data_not_accepted' => 'SMTP Error: Data not accepted.',
845 'connect_host' => 'SMTP Error: Could not connect to SMTP host.',
846 'file_access' => 'Could not access file: ',
847 'file_open' => 'File Error: Could not open file: ',
848 'encoding' => 'Unknown encoding: ',
849 'signing' => 'Signing Error: ',
850 'smtp_error' => 'SMTP server error: ',
851 'empty_message' => 'Message body empty',
852 'invalid_address' => 'Invalid address',
853 'variable_set' => 'Cannot set or reset variable: '
855 //Overwrite language-specific strings. This way we'll never have missing translations - no more "language string failed to load"!
857 if ($langcode != 'en') { //There is no English translation file
858 $l = @include
$lang_path.'phpmailer.lang-'.$langcode.'.php';
860 $this->language
= $PHPMAILER_LANG;
861 return ($l == true); //Returns false if language not found
865 * Return the current array of language strings
868 public function GetTranslations() {
869 return $this->language
;
872 /////////////////////////////////////////////////
873 // METHODS, MESSAGE CREATION
874 /////////////////////////////////////////////////
877 * Creates recipient headers.
881 public function AddrAppend($type, $addr) {
882 $addr_str = $type . ': ';
883 $addresses = array();
884 foreach ($addr as $a) {
885 $addresses[] = $this->AddrFormat($a);
887 $addr_str .= implode(', ', $addresses);
888 $addr_str .= $this->LE
;
894 * Formats an address correctly.
898 public function AddrFormat($addr) {
899 if (empty($addr[1])) {
900 return $this->SecureHeader($addr[0]);
902 return $this->EncodeHeader($this->SecureHeader($addr[1]), 'phrase') . " <" . $this->SecureHeader($addr[0]) . ">";
907 * Wraps message for use with mailers that do not
908 * automatically perform wrapping and for quoted-printable.
909 * Original written by philippe.
910 * @param string $message The message to wrap
911 * @param integer $length The line length to wrap to
912 * @param boolean $qp_mode Whether to run in Quoted-Printable mode
916 public function WrapText($message, $length, $qp_mode = false) {
917 $soft_break = ($qp_mode) ?
sprintf(" =%s", $this->LE
) : $this->LE
;
918 // If utf-8 encoding is used, we will need to make sure we don't
919 // split multibyte characters when we wrap
920 $is_utf8 = (strtolower($this->CharSet
) == "utf-8");
922 $message = $this->FixEOL($message);
923 if (substr($message, -1) == $this->LE
) {
924 $message = substr($message, 0, -1);
927 $line = explode($this->LE
, $message);
929 for ($i=0 ;$i < count($line); $i++
) {
930 $line_part = explode(' ', $line[$i]);
932 for ($e = 0; $e<count($line_part); $e++
) {
933 $word = $line_part[$e];
934 if ($qp_mode and (strlen($word) > $length)) {
935 $space_left = $length - strlen($buf) - 1;
937 if ($space_left > 20) {
940 $len = $this->UTF8CharBoundary($word, $len);
941 } elseif (substr($word, $len - 1, 1) == "=") {
943 } elseif (substr($word, $len - 2, 1) == "=") {
946 $part = substr($word, 0, $len);
947 $word = substr($word, $len);
949 $message .= $buf . sprintf("=%s", $this->LE
);
951 $message .= $buf . $soft_break;
955 while (strlen($word) > 0) {
958 $len = $this->UTF8CharBoundary($word, $len);
959 } elseif (substr($word, $len - 1, 1) == "=") {
961 } elseif (substr($word, $len - 2, 1) == "=") {
964 $part = substr($word, 0, $len);
965 $word = substr($word, $len);
967 if (strlen($word) > 0) {
968 $message .= $part . sprintf("=%s", $this->LE
);
975 $buf .= ($e == 0) ?
$word : (' ' . $word);
977 if (strlen($buf) > $length and $buf_o != '') {
978 $message .= $buf_o . $soft_break;
983 $message .= $buf . $this->LE
;
990 * Finds last character boundary prior to maxLength in a utf-8
991 * quoted (printable) encoded string.
992 * Original written by Colin Brown.
994 * @param string $encodedText utf-8 QP text
995 * @param int $maxLength find last character boundary prior to this length
998 public function UTF8CharBoundary($encodedText, $maxLength) {
999 $foundSplitPos = false;
1001 while (!$foundSplitPos) {
1002 $lastChunk = substr($encodedText, $maxLength - $lookBack, $lookBack);
1003 $encodedCharPos = strpos($lastChunk, "=");
1004 if ($encodedCharPos !== false) {
1005 // Found start of encoded character byte within $lookBack block.
1006 // Check the encoded byte value (the 2 chars after the '=')
1007 $hex = substr($encodedText, $maxLength - $lookBack +
$encodedCharPos +
1, 2);
1008 $dec = hexdec($hex);
1009 if ($dec < 128) { // Single byte character.
1010 // If the encoded char was found at pos 0, it will fit
1011 // otherwise reduce maxLength to start of the encoded char
1012 $maxLength = ($encodedCharPos == 0) ?
$maxLength :
1013 $maxLength - ($lookBack - $encodedCharPos);
1014 $foundSplitPos = true;
1015 } elseif ($dec >= 192) { // First byte of a multi byte character
1016 // Reduce maxLength to split at start of character
1017 $maxLength = $maxLength - ($lookBack - $encodedCharPos);
1018 $foundSplitPos = true;
1019 } elseif ($dec < 192) { // Middle byte of a multi byte character, look further back
1023 // No encoded character found
1024 $foundSplitPos = true;
1032 * Set the body wrapping.
1036 public function SetWordWrap() {
1037 if($this->WordWrap
< 1) {
1041 switch($this->message_type
) {
1043 case 'alt_attachments':
1044 $this->AltBody
= $this->WrapText($this->AltBody
, $this->WordWrap
);
1047 $this->Body
= $this->WrapText($this->Body
, $this->WordWrap
);
1053 * Assembles message header.
1055 * @return string The assembled header
1057 public function CreateHeader() {
1060 // Set the boundaries
1061 $uniq_id = md5(uniqid(time()));
1062 $this->boundary
[1] = 'b1_' . $uniq_id;
1063 $this->boundary
[2] = 'b2_' . $uniq_id;
1065 $result .= $this->HeaderLine('Date', self
::RFCDate());
1066 if($this->Sender
== '') {
1067 $result .= $this->HeaderLine('Return-Path', trim($this->From
));
1069 $result .= $this->HeaderLine('Return-Path', trim($this->Sender
));
1072 // To be created automatically by mail()
1073 if($this->Mailer
!= 'mail') {
1074 if ($this->SingleTo
=== true) {
1075 foreach($this->to
as $t) {
1076 $this->SingleToArray
[] = $this->AddrFormat($t);
1079 if(count($this->to
) > 0) {
1080 $result .= $this->AddrAppend('To', $this->to
);
1081 } elseif (count($this->cc
) == 0) {
1082 $result .= $this->HeaderLine('To', 'undisclosed-recipients:;');
1088 $from[0][0] = trim($this->From
);
1089 $from[0][1] = $this->FromName
;
1090 $result .= $this->AddrAppend('From', $from);
1092 // sendmail and mail() extract Cc from the header before sending
1093 if(count($this->cc
) > 0) {
1094 $result .= $this->AddrAppend('Cc', $this->cc
);
1097 // sendmail and mail() extract Bcc from the header before sending
1098 if((($this->Mailer
== 'sendmail') ||
($this->Mailer
== 'mail')) && (count($this->bcc
) > 0)) {
1099 $result .= $this->AddrAppend('Bcc', $this->bcc
);
1102 if(count($this->ReplyTo
) > 0) {
1103 $result .= $this->AddrAppend('Reply-to', $this->ReplyTo
);
1106 // mail() sets the subject itself
1107 if($this->Mailer
!= 'mail') {
1108 $result .= $this->HeaderLine('Subject', $this->EncodeHeader($this->SecureHeader($this->Subject
)));
1111 if($this->MessageID
!= '') {
1112 $result .= $this->HeaderLine('Message-ID',$this->MessageID
);
1114 $result .= $this->HeaderLine('X-Priority', $this->Priority
);
1115 $result .= $this->HeaderLine('X-Mailer', 'PHPMailer '.$this->Version
.' (phpmailer.sourceforge.net)');
1117 if($this->ConfirmReadingTo
!= '') {
1118 $result .= $this->HeaderLine('Disposition-Notification-To', '<' . trim($this->ConfirmReadingTo
) . '>');
1121 // Add custom headers
1122 for($index = 0; $index < count($this->CustomHeader
); $index++
) {
1123 $result .= $this->HeaderLine(trim($this->CustomHeader
[$index][0]), $this->EncodeHeader(trim($this->CustomHeader
[$index][1])));
1125 if (!$this->sign_key_file
) {
1126 $result .= $this->HeaderLine('MIME-Version', '1.0');
1127 $result .= $this->GetMailMIME();
1134 * Returns the message MIME.
1138 public function GetMailMIME() {
1140 switch($this->message_type
) {
1142 $result .= $this->HeaderLine('Content-Transfer-Encoding', $this->Encoding
);
1143 $result .= sprintf("Content-Type: %s; charset=\"%s\"", $this->ContentType
, $this->CharSet
);
1146 case 'alt_attachments':
1147 if($this->InlineImageExists()){
1148 $result .= sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s", 'multipart/related', $this->LE
, $this->LE
, $this->boundary
[1], $this->LE
);
1150 $result .= $this->HeaderLine('Content-Type', 'multipart/mixed;');
1151 $result .= $this->TextLine("\tboundary=\"" . $this->boundary
[1] . '"');
1155 $result .= $this->HeaderLine('Content-Type', 'multipart/alternative;');
1156 $result .= $this->TextLine("\tboundary=\"" . $this->boundary
[1] . '"');
1160 if($this->Mailer
!= 'mail') {
1161 $result .= $this->LE
.$this->LE
;
1168 * Assembles the message body. Returns an empty string on failure.
1170 * @return string The assembled message body
1172 public function CreateBody() {
1175 if ($this->sign_key_file
) {
1176 $body .= $this->GetMailMIME();
1179 $this->SetWordWrap();
1181 switch($this->message_type
) {
1183 $body .= $this->GetBoundary($this->boundary
[1], '', 'text/plain', '');
1184 $body .= $this->EncodeString($this->AltBody
, $this->Encoding
);
1185 $body .= $this->LE
.$this->LE
;
1186 $body .= $this->GetBoundary($this->boundary
[1], '', 'text/html', '');
1187 $body .= $this->EncodeString($this->Body
, $this->Encoding
);
1188 $body .= $this->LE
.$this->LE
;
1189 $body .= $this->EndBoundary($this->boundary
[1]);
1192 $body .= $this->EncodeString($this->Body
, $this->Encoding
);
1195 $body .= $this->GetBoundary($this->boundary
[1], '', '', '');
1196 $body .= $this->EncodeString($this->Body
, $this->Encoding
);
1198 $body .= $this->AttachAll();
1200 case 'alt_attachments':
1201 $body .= sprintf("--%s%s", $this->boundary
[1], $this->LE
);
1202 $body .= sprintf("Content-Type: %s;%s" . "\tboundary=\"%s\"%s", 'multipart/alternative', $this->LE
, $this->boundary
[2], $this->LE
.$this->LE
);
1203 $body .= $this->GetBoundary($this->boundary
[2], '', 'text/plain', '') . $this->LE
; // Create text body
1204 $body .= $this->EncodeString($this->AltBody
, $this->Encoding
);
1205 $body .= $this->LE
.$this->LE
;
1206 $body .= $this->GetBoundary($this->boundary
[2], '', 'text/html', '') . $this->LE
; // Create the HTML body
1207 $body .= $this->EncodeString($this->Body
, $this->Encoding
);
1208 $body .= $this->LE
.$this->LE
;
1209 $body .= $this->EndBoundary($this->boundary
[2]);
1210 $body .= $this->AttachAll();
1214 if ($this->IsError()) {
1216 } elseif ($this->sign_key_file
) {
1218 $file = tempnam('', 'mail');
1219 file_put_contents($file, $body); //TODO check this worked
1220 $signed = tempnam("", "signed");
1221 if (@openssl_pkcs7_sign
($file, $signed, "file://".$this->sign_cert_file
, array("file://".$this->sign_key_file
, $this->sign_key_pass
), NULL)) {
1224 $body = file_get_contents($signed);
1228 throw new phpmailerException($this->Lang("signing").openssl_error_string());
1230 } catch (phpmailerException
$e) {
1232 if ($this->exceptions
) {
1242 * Returns the start of a message boundary.
1245 private function GetBoundary($boundary, $charSet, $contentType, $encoding) {
1247 if($charSet == '') {
1248 $charSet = $this->CharSet
;
1250 if($contentType == '') {
1251 $contentType = $this->ContentType
;
1253 if($encoding == '') {
1254 $encoding = $this->Encoding
;
1256 $result .= $this->TextLine('--' . $boundary);
1257 $result .= sprintf("Content-Type: %s; charset = \"%s\"", $contentType, $charSet);
1258 $result .= $this->LE
;
1259 $result .= $this->HeaderLine('Content-Transfer-Encoding', $encoding);
1260 $result .= $this->LE
;
1266 * Returns the end of a message boundary.
1269 private function EndBoundary($boundary) {
1270 return $this->LE
. '--' . $boundary . '--' . $this->LE
;
1274 * Sets the message type.
1278 private function SetMessageType() {
1279 if(count($this->attachment
) < 1 && strlen($this->AltBody
) < 1) {
1280 $this->message_type
= 'plain';
1282 if(count($this->attachment
) > 0) {
1283 $this->message_type
= 'attachments';
1285 if(strlen($this->AltBody
) > 0 && count($this->attachment
) < 1) {
1286 $this->message_type
= 'alt';
1288 if(strlen($this->AltBody
) > 0 && count($this->attachment
) > 0) {
1289 $this->message_type
= 'alt_attachments';
1295 * Returns a formatted header line.
1299 public function HeaderLine($name, $value) {
1300 return $name . ': ' . $value . $this->LE
;
1304 * Returns a formatted mail line.
1308 public function TextLine($value) {
1309 return $value . $this->LE
;
1312 /////////////////////////////////////////////////
1313 // CLASS METHODS, ATTACHMENTS
1314 /////////////////////////////////////////////////
1317 * Adds an attachment from a path on the filesystem.
1318 * Returns false if the file could not be found
1320 * @param string $path Path to the attachment.
1321 * @param string $name Overrides the attachment name.
1322 * @param string $encoding File encoding (see $Encoding).
1323 * @param string $type File extension (MIME) type.
1326 public function AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {
1328 if ( !@is_file
($path) ) {
1329 throw new phpmailerException($this->Lang('file_access') . $path, self
::STOP_CONTINUE
);
1331 $filename = basename($path);
1332 if ( $name == '' ) {
1336 $this->attachment
[] = array(
1342 5 => false, // isStringAttachment
1347 } catch (phpmailerException
$e) {
1348 $this->SetError($e->getMessage());
1349 if ($this->exceptions
) {
1352 echo $e->getMessage()."\n";
1353 if ( $e->getCode() == self
::STOP_CRITICAL
) {
1361 * Return the current array of attachments
1364 public function GetAttachments() {
1365 return $this->attachment
;
1369 * Attaches all fs, string, and binary attachments to the message.
1370 * Returns an empty string on failure.
1374 private function AttachAll() {
1375 // Return text of body
1380 // Add all attachments
1381 foreach ($this->attachment
as $attachment) {
1382 // Check for string attachment
1383 $bString = $attachment[5];
1385 $string = $attachment[0];
1387 $path = $attachment[0];
1390 if (in_array($attachment[0], $incl)) { continue; }
1391 $filename = $attachment[1];
1392 $name = $attachment[2];
1393 $encoding = $attachment[3];
1394 $type = $attachment[4];
1395 $disposition = $attachment[6];
1396 $cid = $attachment[7];
1397 $incl[] = $attachment[0];
1398 if ( $disposition == 'inline' && isset($cidUniq[$cid]) ) { continue; }
1399 $cidUniq[$cid] = true;
1401 $mime[] = sprintf("--%s%s", $this->boundary
[1], $this->LE
);
1402 $mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $this->EncodeHeader($this->SecureHeader($name)), $this->LE
);
1403 $mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE
);
1405 if($disposition == 'inline') {
1406 $mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE
);
1409 $mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s", $disposition, $this->EncodeHeader($this->SecureHeader($name)), $this->LE
.$this->LE
);
1411 // Encode as string attachment
1413 $mime[] = $this->EncodeString($string, $encoding);
1414 if($this->IsError()) {
1417 $mime[] = $this->LE
.$this->LE
;
1419 $mime[] = $this->EncodeFile($path, $encoding);
1420 if($this->IsError()) {
1423 $mime[] = $this->LE
.$this->LE
;
1427 $mime[] = sprintf("--%s--%s", $this->boundary
[1], $this->LE
);
1429 return join('', $mime);
1433 * Encodes attachment in requested format.
1434 * Returns an empty string on failure.
1435 * @param string $path The full path to the file
1436 * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
1441 private function EncodeFile($path, $encoding = 'base64') {
1443 if (!is_readable($path)) {
1444 throw new phpmailerException($this->Lang('file_open') . $path, self
::STOP_CONTINUE
);
1446 if (function_exists('get_magic_quotes')) {
1447 function get_magic_quotes() {
1451 if (PHP_VERSION
< 6) {
1452 $magic_quotes = get_magic_quotes_runtime();
1453 set_magic_quotes_runtime(0);
1455 $file_buffer = file_get_contents($path);
1456 $file_buffer = $this->EncodeString($file_buffer, $encoding);
1457 if (PHP_VERSION
< 6) { set_magic_quotes_runtime($magic_quotes); }
1458 return $file_buffer;
1459 } catch (Exception
$e) {
1460 $this->SetError($e->getMessage());
1466 * Encodes string to requested format.
1467 * Returns an empty string on failure.
1468 * @param string $str The text to encode
1469 * @param string $encoding The encoding to use; one of 'base64', '7bit', '8bit', 'binary', 'quoted-printable'
1473 public function EncodeString ($str, $encoding = 'base64') {
1475 switch(strtolower($encoding)) {
1477 $encoded = chunk_split(base64_encode($str), 76, $this->LE
);
1481 $encoded = $this->FixEOL($str);
1482 //Make sure it ends with a line break
1483 if (substr($encoded, -(strlen($this->LE
))) != $this->LE
)
1484 $encoded .= $this->LE
;
1489 case 'quoted-printable':
1490 $encoded = $this->EncodeQP($str);
1493 $this->SetError($this->Lang('encoding') . $encoding);
1500 * Encode a header string to best (shortest) of Q, B, quoted or none.
1504 public function EncodeHeader($str, $position = 'text') {
1507 switch (strtolower($position)) {
1509 if (!preg_match('/[\200-\377]/', $str)) {
1510 // Can't use addslashes as we don't know what value has magic_quotes_sybase
1511 $encoded = addcslashes($str, "\0..\37\177\\\"");
1512 if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str)) {
1515 return ("\"$encoded\"");
1518 $x = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches);
1521 $x = preg_match_all('/[()"]/', $str, $matches);
1525 $x +
= preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches);
1533 $maxlen = 75 - 7 - strlen($this->CharSet
);
1534 // Try to select the encoding which should produce the shortest output
1535 if (strlen($str)/3 < $x) {
1537 if (function_exists('mb_strlen') && $this->HasMultiBytes($str)) {
1538 // Use a custom function which correctly encodes and wraps long
1539 // multibyte strings without breaking lines within a character
1540 $encoded = $this->Base64EncodeWrapMB($str);
1542 $encoded = base64_encode($str);
1543 $maxlen -= $maxlen %
4;
1544 $encoded = trim(chunk_split($encoded, $maxlen, "\n"));
1548 $encoded = $this->EncodeQ($str, $position);
1549 $encoded = $this->WrapText($encoded, $maxlen, true);
1550 $encoded = str_replace('='.$this->LE
, "\n", trim($encoded));
1553 $encoded = preg_replace('/^(.*)$/m', " =?".$this->CharSet
."?$encoding?\\1?=", $encoded);
1554 $encoded = trim(str_replace("\n", $this->LE
, $encoded));
1560 * Checks if a string contains multibyte characters.
1562 * @param string $str multi-byte text to wrap encode
1565 public function HasMultiBytes($str) {
1566 if (function_exists('mb_strlen')) {
1567 return (strlen($str) > mb_strlen($str, $this->CharSet
));
1568 } else { // Assume no multibytes (we can't handle without mbstring functions anyway)
1574 * Correctly encodes and wraps long multibyte strings for mail headers
1575 * without breaking lines within a character.
1576 * Adapted from a function by paravoid at http://uk.php.net/manual/en/function.mb-encode-mimeheader.php
1578 * @param string $str multi-byte text to wrap encode
1581 public function Base64EncodeWrapMB($str) {
1582 $start = "=?".$this->CharSet
."?B?";
1586 $mb_length = mb_strlen($str, $this->CharSet
);
1587 // Each line must have length <= 75, including $start and $end
1588 $length = 75 - strlen($start) - strlen($end);
1589 // Average multi-byte ratio
1590 $ratio = $mb_length / strlen($str);
1591 // Base64 has a 4:3 ratio
1592 $offset = $avgLength = floor($length * $ratio * .75);
1594 for ($i = 0; $i < $mb_length; $i +
= $offset) {
1598 $offset = $avgLength - $lookBack;
1599 $chunk = mb_substr($str, $i, $offset, $this->CharSet
);
1600 $chunk = base64_encode($chunk);
1603 while (strlen($chunk) > $length);
1605 $encoded .= $chunk . $this->LE
;
1608 // Chomp the last linefeed
1609 $encoded = substr($encoded, 0, -strlen($this->LE
));
1614 * Encode string to quoted-printable.
1615 * Only uses standard PHP, slow, but will always work
1617 * @param string $string the text to encode
1618 * @param integer $line_max Number of chars allowed on a line before wrapping
1621 public function EncodeQPphp( $input = '', $line_max = 76, $space_conv = false) {
1622 $hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
1623 $lines = preg_split('/(?:\r\n|\r|\n)/', $input);
1627 while( list(, $line) = each($lines) ) {
1628 $linlen = strlen($line);
1630 for($i = 0; $i < $linlen; $i++
) {
1631 $c = substr( $line, $i, 1 );
1633 if ( ( $i == 0 ) && ( $dec == 46 ) ) { // convert first point in the line into =2E
1637 if ( $i == ( $linlen - 1 ) ) { // convert space at eol only
1639 } else if ( $space_conv ) {
1642 } elseif ( ($dec == 61) ||
($dec < 32 ) ||
($dec > 126) ) { // always encode "\t", which is *not* required
1643 $h2 = floor($dec/16);
1644 $h1 = floor($dec%16
);
1645 $c = $escape.$hex[$h2].$hex[$h1];
1647 if ( (strlen($newline) +
strlen($c)) >= $line_max ) { // CRLF is not counted
1648 $output .= $newline.$escape.$eol; // soft line break; " =\r\n" is okay
1650 // check if newline first character will be point or not
1657 $output .= $newline.$eol;
1663 * Encode string to RFC2045 (6.7) quoted-printable format
1664 * Uses a PHP5 stream filter to do the encoding about 64x faster than the old version
1665 * Also results in same content as you started with after decoding
1666 * @see EncodeQPphp()
1668 * @param string $string the text to encode
1669 * @param integer $line_max Number of chars allowed on a line before wrapping
1670 * @param boolean $space_conv Dummy param for compatibility with existing EncodeQP function
1672 * @author Marcus Bointon
1674 public function EncodeQP($string, $line_max = 76, $space_conv = false) {
1675 if (function_exists('quoted_printable_encode')) { //Use native function if it's available (>= PHP5.3)
1676 return quoted_printable_encode($string);
1678 $filters = stream_get_filters();
1679 if (!in_array('convert.*', $filters)) { //Got convert stream filter?
1680 return $this->EncodeQPphp($string, $line_max, $space_conv); //Fall back to old implementation
1682 $fp = fopen('php://temp/', 'r+');
1683 $string = preg_replace('/\r\n?/', $this->LE
, $string); //Normalise line breaks
1684 $params = array('line-length' => $line_max, 'line-break-chars' => $this->LE
);
1685 $s = stream_filter_append($fp, 'convert.quoted-printable-encode', STREAM_FILTER_READ
, $params);
1686 fputs($fp, $string);
1688 $out = stream_get_contents($fp);
1689 stream_filter_remove($s);
1690 $out = preg_replace('/^\./m', '=2E', $out); //Encode . if it is first char on a line, workaround for bug in Exchange
1696 * NOTE: Phabricator patch to remove use of "/e". See D2147.
1698 private function encodeQCallback(array $matches) {
1699 return '='.sprintf('%02X', ord($matches[1]));
1703 * Encode string to q encoding.
1704 * @link http://tools.ietf.org/html/rfc2047
1705 * @param string $str the text to encode
1706 * @param string $position Where the text is going to be used, see the RFC for what that means
1710 public function EncodeQ ($str, $position = 'text') {
1712 // NOTE: Phabricator patch to remove use of "/e". See D2147.
1714 // There should not be any EOL in the string
1715 $encoded = preg_replace('/[\r\n]*/', '', $str);
1717 switch (strtolower($position)) {
1719 $encoded = preg_replace_callback(
1720 "/([^A-Za-z0-9!*+\/ -])/",
1721 array($this, 'encodeQCallback'),
1725 $encoded = preg_replace_callback(
1727 array($this, 'encodeQCallback'),
1732 // Replace every high ascii, control =, ? and _ characters
1733 $encoded = preg_replace_callback(
1734 '/([\000-\011\013\014\016-\037\075\077\137\177-\377])/',
1735 array($this, 'encodeQCallback'),
1740 // Replace every spaces to _ (more readable than =20)
1741 $encoded = str_replace(' ', '_', $encoded);
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.
1756 public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') {
1757 // Append to $attachment array
1758 $this->attachment
[] = array(
1761 2 => basename($filename),
1764 5 => true, // isStringAttachment
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
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.
1783 public function AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {
1785 if ( !@is_file
($path) ) {
1786 $this->SetError($this->Lang('file_access') . $path);
1790 $filename = basename($path);
1791 if ( $name == '' ) {
1795 // Append to $attachment array
1796 $this->attachment
[] = array(
1802 5 => false, // isStringAttachment
1811 * Returns true if an inline attachment is present.
1815 public function InlineImageExists() {
1816 foreach($this->attachment
as $attachment) {
1817 if ($attachment[6] == 'inline') {
1824 /////////////////////////////////////////////////
1825 // CLASS METHODS, MESSAGE RESET
1826 /////////////////////////////////////////////////
1829 * Clears all recipients assigned in the TO array. Returns void.
1832 public function ClearAddresses() {
1833 foreach($this->to
as $to) {
1834 unset($this->all_recipients
[strtolower($to[0])]);
1836 $this->to
= array();
1840 * Clears all recipients assigned in the CC array. Returns void.
1843 public function ClearCCs() {
1844 foreach($this->cc
as $cc) {
1845 unset($this->all_recipients
[strtolower($cc[0])]);
1847 $this->cc
= array();
1851 * Clears all recipients assigned in the BCC array. Returns void.
1854 public function ClearBCCs() {
1855 foreach($this->bcc
as $bcc) {
1856 unset($this->all_recipients
[strtolower($bcc[0])]);
1858 $this->bcc
= array();
1862 * Clears all recipients assigned in the ReplyTo array. Returns void.
1865 public function ClearReplyTos() {
1866 $this->ReplyTo
= array();
1870 * Clears all recipients assigned in the TO, CC and BCC
1871 * array. Returns void.
1874 public function ClearAllRecipients() {
1875 $this->to
= array();
1876 $this->cc
= array();
1877 $this->bcc
= array();
1878 $this->all_recipients
= array();
1882 * Clears all previously set filesystem, string, and binary
1883 * attachments. Returns void.
1886 public function ClearAttachments() {
1887 $this->attachment
= array();
1891 * Clears all custom headers. Returns void.
1894 public function ClearCustomHeaders() {
1895 $this->CustomHeader
= array();
1898 /////////////////////////////////////////////////
1899 // CLASS METHODS, MISCELLANEOUS
1900 /////////////////////////////////////////////////
1903 * Adds the error message to the error container.
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($lasterror) and array_key_exists('smtp_msg', $lasterror)) {
1912 $msg .= '<p>' . $this->Lang('smtp_error') . $lasterror['smtp_msg'] . "</p>\n";
1915 $this->ErrorInfo
= $msg;
1919 * Returns the proper RFC 822 formatted date.
1924 public static function RFCDate() {
1926 $tzs = ($tz < 0) ?
'-' : '+';
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);
1935 * Returns the server hostname or 'localhost.localdomain' if unknown.
1939 private function ServerHostname() {
1940 if (!empty($this->Hostname
)) {
1941 $result = $this->Hostname
;
1942 } elseif (isset($_SERVER['SERVER_NAME'])) {
1943 $result = $_SERVER['SERVER_NAME'];
1945 $result = 'localhost.localdomain';
1952 * Returns a message in the appropriate language.
1956 private function Lang($key) {
1957 if(count($this->language
) < 1) {
1958 $this->SetLanguage('en'); // set the default language
1961 if(isset($this->language
[$key])) {
1962 return $this->language
[$key];
1964 return 'Language string failed to load: ' . $key;
1969 * Returns true if an error occurred.
1973 public function IsError() {
1974 return ($this->error_count
> 0);
1978 * Changes every end of line from CR or LF to CRLF.
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);
1990 * Adds a custom header.
1994 public function AddCustomHeader($custom_header) {
1995 $this->CustomHeader
[] = explode(':', $custom_header, 2);
1999 * Evaluates the message and returns modifications for inline images and backgrounds
2003 public function MsgHTML($message, $basedir = '') {
2004 preg_match_all("/(src|background)=\"(.*)\"/Ui", $message, $images);
2005 if(isset($images[2])) {
2006 foreach($images[2] as $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($filename, PATHINFO_EXTENSION
);
2014 $mimeType = self
::_mime_types($ext);
2015 if ( strlen($basedir) > 1 && substr($basedir,-1) != '/') { $basedir .= '/'; }
2016 if ( strlen($directory) > 1 && substr($directory,-1) != '/') { $directory .= '/'; }
2017 if ( $this->AddEmbeddedImage($basedir.$directory.$filename, md5($filename), $filename, 'base64',$mimeType) ) {
2018 $message = preg_replace("/".$images[1][$i]."=\"".preg_quote($url, '/')."\"/Ui", $images[1][$i]."=\"".$cid."\"", $message);
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);
2029 if (empty($this->AltBody
)) {
2030 $this->AltBody
= 'To view this email message, open it in a program that understands HTML!' . "\n\n";
2035 * Gets the MIME type of the embedded or inline image
2036 * @param string File extension
2038 * @return string MIME type of ext
2041 public static function _mime_types($ext = '') {
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'
2131 return (!isset($mimes[strtolower($ext)])) ?
'application/octet-stream' : $mimes[strtolower($ext)];
2135 * Set (or reset) Class Objects (variables)
2138 * $page->set('X-Priority', '3');
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?
2146 public function set($name, $value = '') {
2148 if (isset($this->$name) ) {
2149 $this->$name = $value;
2151 throw new phpmailerException($this->Lang('variable_set') . $name, self
::STOP_CRITICAL
);
2153 } catch (Exception
$e) {
2154 $this->SetError($e->getMessage());
2155 if ($e->getCode() == self
::STOP_CRITICAL
) {
2163 * Strips newlines to prevent header injection.
2165 * @param string $str String
2168 public function SecureHeader($str) {
2169 $str = str_replace("\r", '', $str);
2170 $str = str_replace("\n", '', $str);
2175 * Set the private key file and password to sign the message.
2178 * @param string $key_filename Parameter File Name
2179 * @param string $key_pass Password for private key
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;
2188 * Set the private key file and password to sign the message.
2191 * @param string $key_filename Parameter File Name
2192 * @param string $key_pass Password for private key
2194 public function DKIM_QP($txt) {
2197 for ($i=0;$i<strlen($txt);$i++
) {
2199 if ( ((0x21 <= $ord) && ($ord <= 0x3A)) ||
$ord == 0x3C ||
((0x3E <= $ord) && ($ord <= 0x7E)) ) {
2202 $line.="=".sprintf("%02X",$ord);
2209 * Generate DKIM signature
2212 * @param string $s Header
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
);
2219 $privKey = $privKeyStr;
2221 if (openssl_sign($s, $signature, $privKey)) {
2222 return base64_encode($signature);
2227 * Generate DKIM Canonicalization Header
2230 * @param string $s Header
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
2241 $s=implode("\r\n",$lines);
2246 * Generate DKIM Canonicalization Body
2249 * @param string $body Message Body
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);
2264 * Create the DKIM header, body, as new header
2267 * @param string $headers_line Header lines
2268 * @param string $subject Subject
2269 * @param string $body Body
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) {
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".
2299 "\tbh=" . $DKIMb64 . ";\r\n".
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";
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);
2314 class phpmailerException
extends Exception
{
2315 public function errorMessage() {
2316 $errorMsg = '<strong>' . $this->getMessage() . "</strong><br />\n";