2 ////////////////////////////////////////////////////
3 // PHPMailer - PHP email class
5 // Class for sending email using either
6 // sendmail, PHP mail(), or SMTP. Methods are
7 // based upon the standard AspEmail(tm) classes.
9 // Copyright (C) 2001 - 2003 Brent R. Matzelle
11 // License: LGPL, see LICENSE
12 ////////////////////////////////////////////////////
15 * PHPMailer - PHP email transport class
17 * @author Brent R. Matzelle
18 * @copyright 2001 - 2003 Brent R. Matzelle
22 /////////////////////////////////////////////////
24 /////////////////////////////////////////////////
27 * Email priority (1 = High, 3 = Normal, 5 = low).
33 * Sets the CharSet of the message.
36 var $CharSet = "iso-8859-1";
39 * Sets the Content-type of the message.
42 var $ContentType = "text/plain";
45 * Sets the Encoding of the message. Options for this are "8bit",
46 * "7bit", "binary", "base64", and "quoted-printable".
49 var $Encoding = "8bit";
52 * Holds the most recent mailer error message.
58 * Sets the From email address for the message.
61 var $From = "root@localhost";
64 * Sets the From name of the message.
67 var $FromName = "Root User";
70 * Sets the Sender email (Return-Path) of the message. If not empty,
71 * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
77 * Sets the Subject of the message.
83 * Sets the Body of the message. This can be either an HTML or text body.
84 * If HTML then run IsHTML(true).
90 * Sets the text-only body of the message. This automatically sets the
91 * email to multipart/alternative. This body can be read by mail
92 * clients that do not have HTML email capability such as mutt. Clients
93 * that can read HTML will view the normal Body.
99 * Sets word wrapping on the body of the message to a given number of
106 * Method to send mail: ("mail", "sendmail", or "smtp").
109 var $Mailer = "mail";
112 * Sets the path of the sendmail program.
115 var $Sendmail = "/usr/sbin/sendmail";
118 * Path to PHPMailer plugins. This is now only useful if the SMTP class
119 * is in a different directory than the PHP include path.
125 * Holds PHPMailer version.
128 var $Version = "1.73";
131 * Sets the email address that a reading confirmation will be sent.
134 var $ConfirmReadingTo = "";
137 * Sets the hostname to use in Message-Id and Received headers
138 * and as default HELO string. If empty, the value returned
139 * by SERVER_NAME is used or 'localhost.localdomain'.
144 /////////////////////////////////////////////////
146 /////////////////////////////////////////////////
149 * Sets the SMTP hosts. All hosts must be separated by a
150 * semicolon. You can also specify a different port
151 * for each host by using this format: [hostname:port]
152 * (e.g. "smtp1.example.com:25;smtp2.example.com").
153 * Hosts will be tried in order.
156 var $Host = "localhost";
159 * Sets the default SMTP server port.
165 * Sets the SMTP HELO of the message (Default is $Hostname).
171 * Sets SMTP authentication. Utilizes the Username and Password variables.
174 var $SMTPAuth = false;
177 * Sets SMTP username.
183 * Sets SMTP password.
189 * Sets the SMTP server timeout in seconds. This function will not
190 * work with the win32 version.
196 * Sets SMTP class debugging on or off.
199 var $SMTPDebug = false;
202 * Prevents the SMTP connection from being closed after each mail
203 * sending. If this is set to true then to close the connection
204 * requires an explicit call to SmtpClose().
207 var $SMTPKeepAlive = false;
216 var $ReplyTo = array();
217 var $attachment = array();
218 var $CustomHeader = array();
219 var $message_type = "";
220 var $boundary = array();
221 var $language = array();
222 var $error_count = 0;
226 /////////////////////////////////////////////////
228 /////////////////////////////////////////////////
231 * Sets message type to HTML.
235 function IsHTML($bool) {
237 $this->ContentType
= "text/html";
239 $this->ContentType
= "text/plain";
243 * Sets Mailer to send message using SMTP.
247 $this->Mailer
= "smtp";
251 * Sets Mailer to send message using PHP mail() function.
255 $this->Mailer
= "mail";
259 * Sets Mailer to send message using the $Sendmail program.
262 function IsSendmail() {
263 $this->Mailer
= "sendmail";
267 * Sets Mailer to send message using the qmail MTA.
271 $this->Sendmail
= "/var/qmail/bin/sendmail";
272 $this->Mailer
= "sendmail";
276 /////////////////////////////////////////////////
278 /////////////////////////////////////////////////
281 * Adds a "To" address.
282 * @param string $address
283 * @param string $name
286 function AddAddress($address, $name = "") {
287 $cur = count($this->to
);
288 $this->to
[$cur][0] = trim($address);
289 $this->to
[$cur][1] = $name;
293 * Adds a "Cc" address. Note: this function works
294 * with the SMTP mailer on win32, not with the "mail"
296 * @param string $address
297 * @param string $name
300 function AddCC($address, $name = "") {
301 $cur = count($this->cc
);
302 $this->cc
[$cur][0] = trim($address);
303 $this->cc
[$cur][1] = $name;
307 * Adds a "Bcc" address. Note: this function works
308 * with the SMTP mailer on win32, not with the "mail"
310 * @param string $address
311 * @param string $name
314 function AddBCC($address, $name = "") {
315 $cur = count($this->bcc
);
316 $this->bcc
[$cur][0] = trim($address);
317 $this->bcc
[$cur][1] = $name;
321 * Adds a "Reply-to" address.
322 * @param string $address
323 * @param string $name
326 function AddReplyTo($address, $name = "") {
327 $cur = count($this->ReplyTo
);
328 $this->ReplyTo
[$cur][0] = trim($address);
329 $this->ReplyTo
[$cur][1] = $name;
333 /////////////////////////////////////////////////
334 // MAIL SENDING METHODS
335 /////////////////////////////////////////////////
338 * Creates message and assigns Mailer. If the message is
339 * not sent successfully then it returns false. Use the ErrorInfo
340 * variable to view description of the error.
348 if((count($this->to
) +
count($this->cc
) +
count($this->bcc
)) < 1)
350 $this->SetError($this->Lang("provide_address"));
354 // Set whether the message is multipart/alternative
355 if(!empty($this->AltBody
))
356 $this->ContentType
= "multipart/alternative";
358 $this->error_count
= 0; // reset errors
359 $this->SetMessageType();
360 $header .= $this->CreateHeader();
361 $body = $this->CreateBody();
363 if($body == "") { return false; }
366 switch($this->Mailer
)
369 $result = $this->SendmailSend($header, $body);
372 $result = $this->MailSend($header, $body);
375 $result = $this->SmtpSend($header, $body);
378 $this->SetError($this->Mailer
. $this->Lang("mailer_not_supported"));
387 * Sends mail using the $Sendmail program.
391 function SendmailSend($header, $body) {
392 if ($this->Sender
!= "")
393 $sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail
, $this->Sender
);
395 $sendmail = sprintf("%s -oi -t", $this->Sendmail
);
397 if(!@$mail = popen($sendmail, "w"))
399 $this->SetError($this->Lang("execute") . $this->Sendmail
);
403 fputs($mail, $header);
406 $result = pclose($mail) >> 8 & 0xFF;
409 $this->SetError($this->Lang("execute") . $this->Sendmail
);
417 * Sends mail using the PHP mail() function.
421 function MailSend($header, $body) {
423 for($i = 0; $i < count($this->to
); $i++
)
425 if($i != 0) { $to .= ", "; }
426 $to .= $this->to
[$i][0];
429 if ($this->Sender
!= "" && strlen(ini_get("safe_mode"))< 1)
431 $old_from = ini_get("sendmail_from");
432 ini_set("sendmail_from", $this->Sender
);
433 $params = sprintf("-oi -f %s", $this->Sender
);
434 $rt = @mail
($to, $this->EncodeHeader($this->Subject
), $body,
438 $rt = @mail
($to, $this->EncodeHeader($this->Subject
), $body, $header);
440 if (isset($old_from))
441 ini_set("sendmail_from", $old_from);
445 $this->SetError($this->Lang("instantiate"));
453 * Sends mail via SMTP using PhpSMTP (Author:
454 * Chris Ryan). Returns bool. Returns false if there is a
455 * bad MAIL FROM, RCPT, or DATA input.
459 function SmtpSend($header, $body) {
460 include_once($this->PluginDir
. "class.smtp.php");
464 if(!$this->SmtpConnect())
467 $smtp_from = ($this->Sender
== "") ?
$this->From
: $this->Sender
;
468 if(!$this->smtp
->Mail($smtp_from))
470 $error = $this->Lang("from_failed") . $smtp_from;
471 $this->SetError($error);
472 $this->smtp
->Reset();
476 // Attempt to send attach all recipients
477 for($i = 0; $i < count($this->to
); $i++
)
479 if(!$this->smtp
->Recipient($this->to
[$i][0]))
480 $bad_rcpt[] = $this->to
[$i][0];
482 for($i = 0; $i < count($this->cc
); $i++
)
484 if(!$this->smtp
->Recipient($this->cc
[$i][0]))
485 $bad_rcpt[] = $this->cc
[$i][0];
487 for($i = 0; $i < count($this->bcc
); $i++
)
489 if(!$this->smtp
->Recipient($this->bcc
[$i][0]))
490 $bad_rcpt[] = $this->bcc
[$i][0];
493 if(count($bad_rcpt) > 0) // Create error message
495 for($i = 0; $i < count($bad_rcpt); $i++
)
497 if($i != 0) { $error .= ", "; }
498 $error .= $bad_rcpt[$i];
500 $error = $this->Lang("recipients_failed") . $error;
501 $this->SetError($error);
502 $this->smtp
->Reset();
506 if(!$this->smtp
->Data($header . $body))
508 $this->SetError($this->Lang("data_not_accepted"));
509 $this->smtp
->Reset();
512 if($this->SMTPKeepAlive
== true)
513 $this->smtp
->Reset();
521 * Initiates a connection to an SMTP server. Returns false if the
526 function SmtpConnect() {
527 if($this->smtp
== NULL) { $this->smtp
= new SMTP(); }
529 $this->smtp
->do_debug
= $this->SMTPDebug
;
530 $hosts = explode(";", $this->Host
);
532 $connection = ($this->smtp
->Connected());
534 // Retry while there is no connection
535 while($index < count($hosts) && $connection == false)
537 if(strstr($hosts[$index], ":"))
538 list($host, $port) = explode(":", $hosts[$index]);
541 $host = $hosts[$index];
545 if($this->smtp
->Connect($host, $port, $this->Timeout
))
547 if ($this->Helo
!= '')
548 $this->smtp
->Hello($this->Helo
);
550 $this->smtp
->Hello($this->ServerHostname());
554 if(!$this->smtp
->Authenticate($this->Username
,
557 $this->SetError($this->Lang("authenticate"));
558 $this->smtp
->Reset();
567 $this->SetError($this->Lang("connect_host"));
573 * Closes the active SMTP session if one exists.
576 function SmtpClose() {
577 if($this->smtp
!= NULL)
579 if($this->smtp
->Connected())
582 $this->smtp
->Close();
588 * Sets the language for all class error messages. Returns false
589 * if it cannot load the language file. The default language type
591 * @param string $lang_type Type of language (e.g. Portuguese: "br")
592 * @param string $lang_path Path to the language file directory
596 function SetLanguage($lang_type, $lang_path = "language/") {
597 if(file_exists($lang_path.'phpmailer.lang-'.$lang_type.'.php'))
598 include($lang_path.'phpmailer.lang-'.$lang_type.'.php');
599 else if(file_exists($lang_path.'phpmailer.lang-en.php'))
600 include($lang_path.'phpmailer.lang-en.php');
603 $this->SetError("Could not load language file");
606 $this->language
= $PHPMAILER_LANG;
611 /////////////////////////////////////////////////
612 // MESSAGE CREATION METHODS
613 /////////////////////////////////////////////////
616 * Creates recipient headers.
620 function AddrAppend($type, $addr) {
621 $addr_str = $type . ": ";
622 $addr_str .= $this->AddrFormat($addr[0]);
625 for($i = 1; $i < count($addr); $i++
)
626 $addr_str .= ", " . $this->AddrFormat($addr[$i]);
628 $addr_str .= $this->LE
;
634 * Formats an address correctly.
638 function AddrFormat($addr) {
640 $formatted = $addr[0];
643 $formatted = $this->EncodeHeader($addr[1], 'phrase') . " <" .
651 * Wraps message for use with mailers that do not
652 * automatically perform wrapping and for quoted-printable.
653 * Original written by philippe.
657 function WrapText($message, $length, $qp_mode = false) {
658 $soft_break = ($qp_mode) ?
sprintf(" =%s", $this->LE
) : $this->LE
;
660 $message = $this->FixEOL($message);
661 if (substr($message, -1) == $this->LE
)
662 $message = substr($message, 0, -1);
664 $line = explode($this->LE
, $message);
666 for ($i=0 ;$i < count($line); $i++
)
668 $line_part = explode(" ", $line[$i]);
670 for ($e = 0; $e<count($line_part); $e++
)
672 $word = $line_part[$e];
673 if ($qp_mode and (strlen($word) > $length))
675 $space_left = $length - strlen($buf) - 1;
678 if ($space_left > 20)
681 if (substr($word, $len - 1, 1) == "=")
683 elseif (substr($word, $len - 2, 1) == "=")
685 $part = substr($word, 0, $len);
686 $word = substr($word, $len);
688 $message .= $buf . sprintf("=%s", $this->LE
);
692 $message .= $buf . $soft_break;
696 while (strlen($word) > 0)
699 if (substr($word, $len - 1, 1) == "=")
701 elseif (substr($word, $len - 2, 1) == "=")
703 $part = substr($word, 0, $len);
704 $word = substr($word, $len);
706 if (strlen($word) > 0)
707 $message .= $part . sprintf("=%s", $this->LE
);
715 $buf .= ($e == 0) ?
$word : (" " . $word);
717 if (strlen($buf) > $length and $buf_o != "")
719 $message .= $buf_o . $soft_break;
724 $message .= $buf . $this->LE
;
731 * Set the body wrapping.
735 function SetWordWrap() {
736 if($this->WordWrap
< 1)
739 switch($this->message_type
)
743 case "alt_attachments":
744 $this->AltBody
= $this->WrapText($this->AltBody
, $this->WordWrap
);
747 $this->Body
= $this->WrapText($this->Body
, $this->WordWrap
);
753 * Assembles message header.
757 function CreateHeader() {
760 // Set the boundaries
761 $uniq_id = md5(uniqid(time()));
762 $this->boundary
[1] = "b1_" . $uniq_id;
763 $this->boundary
[2] = "b2_" . $uniq_id;
765 $result .= $this->HeaderLine("Date", $this->RFCDate());
766 if($this->Sender
== "")
767 $result .= $this->HeaderLine("Return-Path", trim($this->From
));
769 $result .= $this->HeaderLine("Return-Path", trim($this->Sender
));
771 // To be created automatically by mail()
772 if($this->Mailer
!= "mail")
774 if(count($this->to
) > 0)
775 $result .= $this->AddrAppend("To", $this->to
);
776 else if (count($this->cc
) == 0)
777 $result .= $this->HeaderLine("To", "undisclosed-recipients:;");
778 if(count($this->cc
) > 0)
779 $result .= $this->AddrAppend("Cc", $this->cc
);
783 $from[0][0] = trim($this->From
);
784 $from[0][1] = $this->FromName
;
785 $result .= $this->AddrAppend("From", $from);
787 // sendmail and mail() extract Bcc from the header before sending
788 if((($this->Mailer
== "sendmail") ||
($this->Mailer
== "mail")) && (count($this->bcc
) > 0))
789 $result .= $this->AddrAppend("Bcc", $this->bcc
);
791 if(count($this->ReplyTo
) > 0)
792 $result .= $this->AddrAppend("Reply-to", $this->ReplyTo
);
794 // mail() sets the subject itself
795 if($this->Mailer
!= "mail")
796 $result .= $this->HeaderLine("Subject", $this->EncodeHeader(trim($this->Subject
)));
798 $result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE
);
799 $result .= $this->HeaderLine("X-Priority", $this->Priority
);
800 $result .= $this->HeaderLine("X-Mailer", "PHPMailer [version " . $this->Version
. "]");
802 if($this->ConfirmReadingTo
!= "")
804 $result .= $this->HeaderLine("Disposition-Notification-To",
805 "<" . trim($this->ConfirmReadingTo
) . ">");
808 // Add custom headers
809 for($index = 0; $index < count($this->CustomHeader
); $index++
)
811 $result .= $this->HeaderLine(trim($this->CustomHeader
[$index][0]),
812 $this->EncodeHeader(trim($this->CustomHeader
[$index][1])));
814 $result .= $this->HeaderLine("MIME-Version", "1.0");
816 switch($this->message_type
)
819 $result .= $this->HeaderLine("Content-Transfer-Encoding", $this->Encoding
);
820 $result .= sprintf("Content-Type: %s; charset=\"%s\"",
821 $this->ContentType
, $this->CharSet
);
825 case "alt_attachments":
826 if($this->InlineImageExists())
828 $result .= sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s",
829 "multipart/related", $this->LE
, $this->LE
,
830 $this->boundary
[1], $this->LE
);
834 $result .= $this->HeaderLine("Content-Type", "multipart/mixed;");
835 $result .= $this->TextLine("\tboundary=\"" . $this->boundary
[1] . '"');
839 $result .= $this->HeaderLine("Content-Type", "multipart/alternative;");
840 $result .= $this->TextLine("\tboundary=\"" . $this->boundary
[1] . '"');
844 if($this->Mailer
!= "mail")
845 $result .= $this->LE
.$this->LE
;
851 * Assembles the message body. Returns an empty string on failure.
855 function CreateBody() {
858 $this->SetWordWrap();
860 switch($this->message_type
)
863 $result .= $this->GetBoundary($this->boundary
[1], "",
865 $result .= $this->EncodeString($this->AltBody
, $this->Encoding
);
866 $result .= $this->LE
.$this->LE
;
867 $result .= $this->GetBoundary($this->boundary
[1], "",
870 $result .= $this->EncodeString($this->Body
, $this->Encoding
);
871 $result .= $this->LE
.$this->LE
;
873 $result .= $this->EndBoundary($this->boundary
[1]);
876 $result .= $this->EncodeString($this->Body
, $this->Encoding
);
879 $result .= $this->GetBoundary($this->boundary
[1], "", "", "");
880 $result .= $this->EncodeString($this->Body
, $this->Encoding
);
881 $result .= $this->LE
;
883 $result .= $this->AttachAll();
885 case "alt_attachments":
886 $result .= sprintf("--%s%s", $this->boundary
[1], $this->LE
);
887 $result .= sprintf("Content-Type: %s;%s" .
888 "\tboundary=\"%s\"%s",
889 "multipart/alternative", $this->LE
,
890 $this->boundary
[2], $this->LE
.$this->LE
);
893 $result .= $this->GetBoundary($this->boundary
[2], "",
894 "text/plain", "") . $this->LE
;
896 $result .= $this->EncodeString($this->AltBody
, $this->Encoding
);
897 $result .= $this->LE
.$this->LE
;
899 // Create the HTML body
900 $result .= $this->GetBoundary($this->boundary
[2], "",
901 "text/html", "") . $this->LE
;
903 $result .= $this->EncodeString($this->Body
, $this->Encoding
);
904 $result .= $this->LE
.$this->LE
;
906 $result .= $this->EndBoundary($this->boundary
[2]);
908 $result .= $this->AttachAll();
918 * Returns the start of a message boundary.
921 function GetBoundary($boundary, $charSet, $contentType, $encoding) {
923 if($charSet == "") { $charSet = $this->CharSet
; }
924 if($contentType == "") { $contentType = $this->ContentType
; }
925 if($encoding == "") { $encoding = $this->Encoding
; }
927 $result .= $this->TextLine("--" . $boundary);
928 $result .= sprintf("Content-Type: %s; charset = \"%s\"",
929 $contentType, $charSet);
930 $result .= $this->LE
;
931 $result .= $this->HeaderLine("Content-Transfer-Encoding", $encoding);
932 $result .= $this->LE
;
938 * Returns the end of a message boundary.
941 function EndBoundary($boundary) {
942 return $this->LE
. "--" . $boundary . "--" . $this->LE
;
946 * Sets the message type.
950 function SetMessageType() {
951 if(count($this->attachment
) < 1 && strlen($this->AltBody
) < 1)
952 $this->message_type
= "plain";
955 if(count($this->attachment
) > 0)
956 $this->message_type
= "attachments";
957 if(strlen($this->AltBody
) > 0 && count($this->attachment
) < 1)
958 $this->message_type
= "alt";
959 if(strlen($this->AltBody
) > 0 && count($this->attachment
) > 0)
960 $this->message_type
= "alt_attachments";
965 * Returns a formatted header line.
969 function HeaderLine($name, $value) {
970 return $name . ": " . $value . $this->LE
;
974 * Returns a formatted mail line.
978 function TextLine($value) {
979 return $value . $this->LE
;
982 /////////////////////////////////////////////////
983 // ATTACHMENT METHODS
984 /////////////////////////////////////////////////
987 * Adds an attachment from a path on the filesystem.
988 * Returns false if the file could not be found
990 * @param string $path Path to the attachment.
991 * @param string $name Overrides the attachment name.
992 * @param string $encoding File encoding (see $Encoding).
993 * @param string $type File extension (MIME) type.
996 function AddAttachment($path, $name = "", $encoding = "base64",
997 $type = "application/octet-stream") {
1000 $this->SetError($this->Lang("file_access") . $path);
1004 $filename = basename($path);
1008 $cur = count($this->attachment
);
1009 $this->attachment
[$cur][0] = $path;
1010 $this->attachment
[$cur][1] = $filename;
1011 $this->attachment
[$cur][2] = $name;
1012 $this->attachment
[$cur][3] = $encoding;
1013 $this->attachment
[$cur][4] = $type;
1014 $this->attachment
[$cur][5] = false; // isStringAttachment
1015 $this->attachment
[$cur][6] = "attachment";
1016 $this->attachment
[$cur][7] = 0;
1022 * Attaches all fs, string, and binary attachments to the message.
1023 * Returns an empty string on failure.
1027 function AttachAll() {
1028 // Return text of body
1031 // Add all attachments
1032 for($i = 0; $i < count($this->attachment
); $i++
)
1034 // Check for string attachment
1035 $bString = $this->attachment
[$i][5];
1037 $string = $this->attachment
[$i][0];
1039 $path = $this->attachment
[$i][0];
1041 $filename = $this->attachment
[$i][1];
1042 $name = $this->attachment
[$i][2];
1043 $encoding = $this->attachment
[$i][3];
1044 $type = $this->attachment
[$i][4];
1045 $disposition = $this->attachment
[$i][6];
1046 $cid = $this->attachment
[$i][7];
1048 $mime[] = sprintf("--%s%s", $this->boundary
[1], $this->LE
);
1049 $mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $name, $this->LE
);
1050 $mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE
);
1052 if($disposition == "inline")
1053 $mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE
);
1055 $mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s",
1056 $disposition, $name, $this->LE
.$this->LE
);
1058 // Encode as string attachment
1061 $mime[] = $this->EncodeString($string, $encoding);
1062 if($this->IsError()) { return ""; }
1063 $mime[] = $this->LE
.$this->LE
;
1067 $mime[] = $this->EncodeFile($path, $encoding);
1068 if($this->IsError()) { return ""; }
1069 $mime[] = $this->LE
.$this->LE
;
1073 $mime[] = sprintf("--%s--%s", $this->boundary
[1], $this->LE
);
1075 return join("", $mime);
1079 * Encodes attachment in requested format. Returns an
1080 * empty string on failure.
1084 function EncodeFile ($path, $encoding = "base64") {
1085 if(!@$fd = fopen($path, "rb"))
1087 $this->SetError($this->Lang("file_open") . $path);
1090 $magic_quotes = get_magic_quotes_runtime();
1091 set_magic_quotes_runtime(0);
1092 $file_buffer = fread($fd, filesize($path));
1093 $file_buffer = $this->EncodeString($file_buffer, $encoding);
1095 set_magic_quotes_runtime($magic_quotes);
1097 return $file_buffer;
1101 * Encodes string to requested format. Returns an
1102 * empty string on failure.
1106 function EncodeString ($str, $encoding = "base64") {
1108 switch(strtolower($encoding)) {
1110 // chunk_split is found in PHP >= 3.0.6
1111 $encoded = chunk_split(base64_encode($str), 76, $this->LE
);
1115 $encoded = $this->FixEOL($str);
1116 if (substr($encoded, -(strlen($this->LE
))) != $this->LE
)
1117 $encoded .= $this->LE
;
1122 case "quoted-printable":
1123 $encoded = $this->EncodeQP($str);
1126 $this->SetError($this->Lang("encoding") . $encoding);
1133 * Encode a header string to best of Q, B, quoted or none.
1137 function EncodeHeader ($str, $position = 'text') {
1140 switch (strtolower($position)) {
1142 if (!preg_match('/[\200-\377]/', $str)) {
1143 // Can't use addslashes as we don't know what value has magic_quotes_sybase.
1144 $encoded = addcslashes($str, "\0..\37\177\\\"");
1146 if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str))
1149 return ("\"$encoded\"");
1151 $x = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches);
1154 $x = preg_match_all('/[()"]/', $str, $matches);
1158 $x +
= preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches);
1165 $maxlen = 75 - 7 - strlen($this->CharSet
);
1166 // Try to select the encoding which should produce the shortest output
1167 if (strlen($str)/3 < $x) {
1169 $encoded = base64_encode($str);
1170 $maxlen -= $maxlen %
4;
1171 $encoded = trim(chunk_split($encoded, $maxlen, "\n"));
1174 $encoded = $this->EncodeQ($str, $position);
1175 $encoded = $this->WrapText($encoded, $maxlen, true);
1176 $encoded = str_replace("=".$this->LE
, "\n", trim($encoded));
1179 $encoded = preg_replace('/^(.*)$/m', " =?".$this->CharSet
."?$encoding?\\1?=", $encoded);
1180 $encoded = trim(str_replace("\n", $this->LE
, $encoded));
1186 * Encode string to quoted-printable.
1190 function EncodeQP ($str) {
1191 $encoded = $this->FixEOL($str);
1192 if (substr($encoded, -(strlen($this->LE
))) != $this->LE
)
1193 $encoded .= $this->LE
;
1195 // Replace every high ascii, control and = characters
1196 $encoded = preg_replace('/([\000-\010\013\014\016-\037\075\177-\377])/e',
1197 "'='.sprintf('%02X', ord('\\1'))", $encoded);
1198 // Replace every spaces and tabs when it's the last character on a line
1199 $encoded = preg_replace("/([\011\040])".$this->LE
."/e",
1200 "'='.sprintf('%02X', ord('\\1')).'".$this->LE
."'", $encoded);
1202 // Maximum line length of 76 characters before CRLF (74 + space + '=')
1203 $encoded = $this->WrapText($encoded, 74, true);
1209 * Encode string to q encoding.
1213 function EncodeQ ($str, $position = "text") {
1214 // There should not be any EOL in the string
1215 $encoded = preg_replace("[\r\n]", "", $str);
1217 switch (strtolower($position)) {
1219 $encoded = preg_replace("/([^A-Za-z0-9!*+\/ -])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
1222 $encoded = preg_replace("/([\(\)\"])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
1225 // Replace every high ascii, control =, ? and _ characters
1226 $encoded = preg_replace('/([\000-\011\013\014\016-\037\075\077\137\177-\377])/e',
1227 "'='.sprintf('%02X', ord('\\1'))", $encoded);
1231 // Replace every spaces to _ (more readable than =20)
1232 $encoded = str_replace(" ", "_", $encoded);
1238 * Adds a string or binary attachment (non-filesystem) to the list.
1239 * This method can be used to attach ascii or binary data,
1240 * such as a BLOB record from a database.
1241 * @param string $string String attachment data.
1242 * @param string $filename Name of the attachment.
1243 * @param string $encoding File encoding (see $Encoding).
1244 * @param string $type File extension (MIME) type.
1247 function AddStringAttachment($string, $filename, $encoding = "base64",
1248 $type = "application/octet-stream") {
1249 // Append to $attachment array
1250 $cur = count($this->attachment
);
1251 $this->attachment
[$cur][0] = $string;
1252 $this->attachment
[$cur][1] = $filename;
1253 $this->attachment
[$cur][2] = $filename;
1254 $this->attachment
[$cur][3] = $encoding;
1255 $this->attachment
[$cur][4] = $type;
1256 $this->attachment
[$cur][5] = true; // isString
1257 $this->attachment
[$cur][6] = "attachment";
1258 $this->attachment
[$cur][7] = 0;
1262 * Adds an embedded attachment. This can include images, sounds, and
1263 * just about any other document. Make sure to set the $type to an
1264 * image type. For JPEG images use "image/jpeg" and for GIF images
1266 * @param string $path Path to the attachment.
1267 * @param string $cid Content ID of the attachment. Use this to identify
1268 * the Id for accessing the image in an HTML form.
1269 * @param string $name Overrides the attachment name.
1270 * @param string $encoding File encoding (see $Encoding).
1271 * @param string $type File extension (MIME) type.
1274 function AddEmbeddedImage($path, $cid, $name = "", $encoding = "base64",
1275 $type = "application/octet-stream") {
1277 if(!@is_file
($path))
1279 $this->SetError($this->Lang("file_access") . $path);
1283 $filename = basename($path);
1287 // Append to $attachment array
1288 $cur = count($this->attachment
);
1289 $this->attachment
[$cur][0] = $path;
1290 $this->attachment
[$cur][1] = $filename;
1291 $this->attachment
[$cur][2] = $name;
1292 $this->attachment
[$cur][3] = $encoding;
1293 $this->attachment
[$cur][4] = $type;
1294 $this->attachment
[$cur][5] = false; // isStringAttachment
1295 $this->attachment
[$cur][6] = "inline";
1296 $this->attachment
[$cur][7] = $cid;
1302 * Returns true if an inline attachment is present.
1306 function InlineImageExists() {
1308 for($i = 0; $i < count($this->attachment
); $i++
)
1310 if($this->attachment
[$i][6] == "inline")
1320 /////////////////////////////////////////////////
1321 // MESSAGE RESET METHODS
1322 /////////////////////////////////////////////////
1325 * Clears all recipients assigned in the TO array. Returns void.
1328 function ClearAddresses() {
1329 $this->to
= array();
1333 * Clears all recipients assigned in the CC array. Returns void.
1336 function ClearCCs() {
1337 $this->cc
= array();
1341 * Clears all recipients assigned in the BCC array. Returns void.
1344 function ClearBCCs() {
1345 $this->bcc
= array();
1349 * Clears all recipients assigned in the ReplyTo array. Returns void.
1352 function ClearReplyTos() {
1353 $this->ReplyTo
= array();
1357 * Clears all recipients assigned in the TO, CC and BCC
1358 * array. Returns void.
1361 function ClearAllRecipients() {
1362 $this->to
= array();
1363 $this->cc
= array();
1364 $this->bcc
= array();
1368 * Clears all previously set filesystem, string, and binary
1369 * attachments. Returns void.
1372 function ClearAttachments() {
1373 $this->attachment
= array();
1377 * Clears all custom headers. Returns void.
1380 function ClearCustomHeaders() {
1381 $this->CustomHeader
= array();
1385 /////////////////////////////////////////////////
1386 // MISCELLANEOUS METHODS
1387 /////////////////////////////////////////////////
1390 * Adds the error message to the error container.
1395 function SetError($msg) {
1396 $this->error_count++
;
1397 $this->ErrorInfo
= $msg;
1401 * Returns the proper RFC 822 formatted date.
1405 function RFCDate() {
1407 $tzs = ($tz < 0) ?
"-" : "+";
1409 $tz = ($tz/3600)*100 +
($tz%3600
)/60;
1410 $result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
1416 * Returns the appropriate server variable. Should work with both
1417 * PHP 4.1.0+ as well as older versions. Returns an empty string
1418 * if nothing is found.
1422 function ServerVar($varName) {
1423 global $HTTP_SERVER_VARS;
1424 global $HTTP_ENV_VARS;
1426 if(!isset($_SERVER))
1428 $_SERVER = $HTTP_SERVER_VARS;
1429 if(!isset($_SERVER["REMOTE_ADDR"]))
1430 $_SERVER = $HTTP_ENV_VARS; // must be Apache
1433 if(isset($_SERVER[$varName]))
1434 return $_SERVER[$varName];
1440 * Returns the server hostname or 'localhost.localdomain' if unknown.
1444 function ServerHostname() {
1445 if ($this->Hostname
!= "")
1446 $result = $this->Hostname
;
1447 elseif ($this->ServerVar('SERVER_NAME') != "")
1448 $result = $this->ServerVar('SERVER_NAME');
1450 $result = "localhost.localdomain";
1456 * Returns a message in the appropriate language.
1460 function Lang($key) {
1461 if(count($this->language
) < 1)
1462 $this->SetLanguage("en"); // set the default language
1464 if(isset($this->language
[$key]))
1465 return $this->language
[$key];
1467 return "Language string failed to load: " . $key;
1471 * Returns true if an error occurred.
1474 function IsError() {
1475 return ($this->error_count
> 0);
1479 * Changes every end of line from CR or LF to CRLF.
1483 function FixEOL($str) {
1484 $str = str_replace("\r\n", "\n", $str);
1485 $str = str_replace("\r", "\n", $str);
1486 $str = str_replace("\n", $this->LE
, $str);
1491 * Adds a custom header.
1494 function AddCustomHeader($custom_header) {
1495 $this->CustomHeader
[] = explode(":", $custom_header, 2);