eol-style set #3
[core.git] / inc / classes / third_party / php_mailer / ChangeLog.txt
index 9533ccd9976fe095bfc7e33113977064707df0a3..5de251ee0d10896a633c3cdb54ecb3a1a3b1d745 100644 (file)
-ChangeLog\r
-\r
-NOTE: THIS VERSION OF PHPMAILER IS DESIGNED FOR PHP5/PHP6. IT WILL NOT WORK WITH PHP4.\r
-\r
-Version 2.3 (November 06, 2008)\r
-\r
-* added Arabic language (many thanks to Bahjat Al Mostafa)\r
-* removed English language from language files and made it a default within\r
-  class.phpmailer.php - if no language is found, it will default to use\r
-  the english language translation\r
-* fixed public/private declarations\r
-* corrected line 1728, $basedir to $directory\r
-* added $sign_cert_file to avoid improper duplicate use of $sign_key_file\r
-* corrected $this->Hello on line 612 to $this->Helo\r
-* changed default of $LE to "\r\n" to comply with RFC 2822. Can be set by the user\r
-  if default is not acceptable\r
-* removed trim() from return results in EncodeQP\r
-* /test and three files it contained are removed from version 2.3\r
-* fixed phpunit.php for compliance with PHP5\r
-* changed $this->AltBody = $textMsg; to $this->AltBody = html_entity_decode($textMsg);\r
-* We have removed the /phpdoc from the downloads. All documentation is now on\r
-  the http://phpmailer.codeworxtech.com website.\r
-\r
-Version 2.2.1 () July 19 2008\r
-\r
-* fixed line 1092 in class.smtp.php (my apologies, error on my part)\r
-\r
-Version 2.2 () July 15 2008\r
-\r
-* Fixed redirect issue (display of UTF-8 in thank you redirect)\r
-* fixed error in getResponse function declaration (class.pop3.php)\r
-* PHPMailer now PHP6 compliant\r
-* fixed line 1092 in class.smtp.php (endless loop from missing = sign)\r
-\r
-Version 2.1 (Wed, June 04 2008)\r
-\r
-** NOTE: WE HAVE A NEW LANGUAGE VARIABLE FOR DIGITALLY SIGNED S/MIME EMAILS.\r
-   IF YOU CAN HELP WITH LANGUAGES OTHER THAN ENGLISH AND SPANISH, IT WOULD BE\r
-   APPRECIATED.\r
-\r
-* added S/MIME functionality (ability to digitally sign emails)\r
-  BIG THANKS TO "sergiocambra" for posting this patch back in November 2007.\r
-  The "Signed Emails" functionality adds the Sign method to pass the private key\r
-  filename and the password to read it, and then email will be sent with\r
-  content-type multipart/signed and with the digital signature attached.\r
-* fully compatible with E_STRICT error level\r
-  - Please note:\r
-    In about half the test environments this development version was subjected\r
-    to, an error was thrown for the date() functions used (line 1565 and 1569).\r
-    This is NOT a PHPMailer error, it is the result of an incorrectly configured\r
-    PHP5 installation. The fix is to modify your 'php.ini' file and include the\r
-    date.timezone = America/New York\r
-    directive, to your own server timezone\r
-  - If you do get this error, and are unable to access your php.ini file:\r
-    In your PHP script, add\r
-    date_default_timezone_set('America/Toronto');\r
-    - do not try to use\r
-    $myVar = date_default_timezone_get();\r
-    as a test, it will throw an error.\r
-* added ability to define path (mainly for embedded images)\r
-  function MsgHTML($message,$basedir='') ... where:\r
-  $basedir is the fully qualified path\r
-* fixed MsgHTML() function:\r
-  - Embedded Images where images are specified by <protocol>:// will not be altered or embedded\r
-* fixed the return value of SMTP exit code ( pclose )\r
-* addressed issue of multibyte characters in subject line and truncating\r
-* added ability to have user specified Message ID\r
-  (default is still that PHPMailer create a unique Message ID)\r
-* corrected unidentified message type to 'application/octet-stream'\r
-* fixed chunk_split() multibyte issue (thanks to Colin Brown, et al).\r
-* added check for added attachments\r
-* enhanced conversion of HTML to text in MsgHTML (thanks to "brunny")\r
-\r
-Version 2.1.0beta2 (Sun, Dec 02 2007)\r
-* implemented updated EncodeQP (thanks to coolbru, aka Marcus Bointon)\r
-* finished all testing, all known bugs corrected, enhancements tested\r
-- note: will NOT work with PHP4.\r
-\r
-please note, this is BETA software\r
-** DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS\r
-INTENDED STRICTLY FOR TESTING\r
-\r
-Version 2.1.0beta1\r
-please note, this is BETA software\r
-** DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS\r
-INTENDED STRICTLY FOR TESTING\r
-\r
-Version 2.0.0 rc2 (Fri, Nov 16 2007), interim release\r
-* implements new property to control VERP in class.smtp.php\r
-  example (requires instantiating class.smtp.php):\r
-  $mail->do_verp = true;\r
-* POP-before-SMTP functionality included, thanks to Richard Davey\r
-  (see class.pop3.php & pop3_before_smtp_test.php for examples)\r
-* included example showing how to use PHPMailer with GMAIL\r
-* fixed the missing Cc in SendMail() and Mail()\r
-\r
-******************\r
-A note on sending bulk emails:\r
-\r
-If the email you are sending is not personalized, consider using the\r
-"undisclosed-recipient:;" strategy. That is, put all of your recipients\r
-in the Bcc field and set the To field to "undisclosed-recipients:;".\r
-It's a lot faster (only one send) and saves quite a bit on resources.\r
-Contrary to some opinions, this will not get you listed in spam engines -\r
-it's a legitimate way for you to send emails.\r
-\r
-A partial example for use with PHPMailer:\r
-\r
-$mail->AddAddress("undisclosed-recipients:;");\r
-$mail->AddBCC("email1@anydomain.com,email2@anyotherdomain.com,email3@anyalternatedomain.com");\r
-\r
-Many email service providers restrict the number of emails that can be sent\r
-in any given time period. Often that is between 50 - 60 emails maximum\r
-per hour or per send session.\r
-\r
-If that's the case, then break up your Bcc lists into chunks that are one\r
-less than your limit, and put a pause in your script.\r
-*******************\r
-\r
-Version 2.0.0 rc1 (Thu, Nov 08 2007), interim release\r
-* dramatically simplified using inline graphics ... it's fully automated and requires no user input\r
-* added automatic document type detection for attachments and pictures\r
-* added MsgHTML() function to replace Body tag for HTML emails\r
-* fixed the SendMail security issues (input validation vulnerability)\r
-* enhanced the AddAddresses functionality so that the "Name" portion is used in the email address\r
-* removed the need to use the AltBody method (set from the HTML, or default text used)\r
-* set the PHP Mail() function as the default (still support SendMail, SMTP Mail)\r
-* removed the need to set the IsHTML property (set automatically)\r
-* added Estonian language file by Indrek P&auml;ri\r
-* added header injection patch\r
-* added "set" method to permit users to create their own pseudo-properties like 'X-Headers', etc.\r
-  example of use:\r
-  $mail->set('X-Priority', '3');\r
-  $mail->set('X-MSMail-Priority', 'Normal');\r
-* fixed warning message in SMTP get_lines method\r
-* added TLS/SSL SMTP support\r
-  example of use:\r
-  $mail = new PHPMailer();\r
-  $mail->Mailer = "smtp";\r
-  $mail->Host = "smtp.example.com";\r
-  $mail->SMTPSecure   = "tls"; // option\r
-  //$mail->SMTPSecure   = "ssl";  // option\r
-  ...\r
-  $mail->Send();\r
-* PHPMailer has been tested with PHP4 (4.4.7) and PHP5 (5.2.7)\r
-* Works with PHP installed as a module or as CGI-PHP\r
-- NOTE: will NOT work with PHP5 in E_STRICT error mode\r
-\r
-Version 1.73 (Sun, Jun 10 2005)\r
-* Fixed denial of service bug: http://www.cybsec.com/vuln/PHPMailer-DOS.pdf\r
-* Now has a total of 20 translations\r
-* Fixed alt attachments bug: http://tinyurl.com/98u9k\r
-\r
-Version 1.72 (Wed, May 25 2004)\r
-* Added Dutch, Swedish, Czech, Norwegian, and Turkish translations.\r
-* Received: Removed this method because spam filter programs like\r
-SpamAssassin reject this header.\r
-* Fixed error count bug.\r
-* SetLanguage default is now "language/".\r
-* Fixed magic_quotes_runtime bug.\r
-\r
-Version 1.71 (Tue, Jul 28 2003)\r
-* Made several speed enhancements\r
-* Added German and Italian translation files\r
-* Fixed HELO/AUTH bugs on keep-alive connects\r
-* Now provides an error message if language file does not load\r
-* Fixed attachment EOL bug\r
-* Updated some unclear documentation\r
-* Added additional tests and improved others\r
-\r
-Version 1.70 (Mon, Jun 20 2003)\r
-* Added SMTP keep-alive support\r
-* Added IsError method for error detection\r
-* Added error message translation support (SetLanguage)\r
-* Refactored many methods to increase library performance\r
-* Hello now sends the newer EHLO message before HELO as per RFC 2821\r
-* Removed the boundary class and replaced it with GetBoundary\r
-* Removed queue support methods\r
-* New $Hostname variable\r
-* New Message-ID header\r
-* Received header reformat\r
-* Helo variable default changed to $Hostname\r
-* Removed extra spaces in Content-Type definition (#667182)\r
-* Return-Path should be set to Sender when set\r
-* Adds Q or B encoding to headers when necessary\r
-* quoted-encoding should now encode NULs \000\r
-* Fixed encoding of body/AltBody (#553370)\r
-* Adds "To: undisclosed-recipients:;" when all recipients are hidden (BCC)\r
-* Multiple bug fixes\r
-\r
-Version 1.65 (Fri, Aug 09 2002)\r
-* Fixed non-visible attachment bug (#585097) for Outlook\r
-* SMTP connections are now closed after each transaction\r
-* Fixed SMTP::Expand return value\r
-* Converted SMTP class documentation to phpDocumentor format\r
-\r
-Version 1.62 (Wed, Jun 26 2002)\r
-* Fixed multi-attach bug\r
-* Set proper word wrapping\r
-* Reduced memory use with attachments\r
-* Added more debugging\r
-* Changed documentation to phpDocumentor format\r
-\r
-Version 1.60 (Sat, Mar 30 2002)\r
-* Sendmail pipe and address patch (Christian Holtje)\r
-* Added embedded image and read confirmation support (A. Ognio)\r
-* Added unit tests\r
-* Added SMTP timeout support (*nix only)\r
-* Added possibly temporary PluginDir variable for SMTP class\r
-* Added LE message line ending variable\r
-* Refactored boundary and attachment code\r
-* Eliminated SMTP class warnings\r
-* Added SendToQueue method for future queuing support\r
-\r
-Version 1.54 (Wed, Dec 19 2001)\r
-* Add some queuing support code\r
-* Fixed a pesky multi/alt bug\r
-* Messages are no longer forced to have "To" addresses\r
-\r
-Version 1.50 (Thu, Nov 08 2001)\r
-* Fix extra lines when not using SMTP mailer\r
-* Set WordWrap variable to int with a zero default\r
-\r
-Version 1.47 (Tue, Oct 16 2001)\r
-* Fixed Received header code format\r
-* Fixed AltBody order error\r
-* Fixed alternate port warning\r
-\r
-Version 1.45 (Tue, Sep 25 2001)\r
-* Added enhanced SMTP debug support\r
-* Added support for multiple ports on SMTP\r
-* Added Received header for tracing\r
-* Fixed AddStringAttachment encoding\r
-* Fixed possible header name quote bug\r
-* Fixed wordwrap() trim bug\r
-* Couple other small bug fixes\r
-\r
-Version 1.41 (Wed, Aug 22 2001)\r
-* Fixed AltBody bug w/o attachments\r
-* Fixed rfc_date() for certain mail servers\r
-\r
-Version 1.40 (Sun, Aug 12 2001)\r
-* Added multipart/alternative support (AltBody)\r
-* Documentation update\r
-* Fixed bug in Mercury MTA\r
-\r
-Version 1.29 (Fri, Aug 03 2001)\r
-* Added AddStringAttachment() method\r
-* Added SMTP authentication support\r
-\r
-Version 1.28 (Mon, Jul 30 2001)\r
-* Fixed a typo in SMTP class\r
-* Fixed header issue with Imail (win32) SMTP server\r
-* Made fopen() calls for attachments use "rb" to fix win32 error\r
-\r
-Version 1.25 (Mon, Jul 02 2001)\r
-* Added RFC 822 date fix (Patrice)\r
-* Added improved error handling by adding a $ErrorInfo variable\r
-* Removed MailerDebug variable (obsolete with new error handler)\r
-\r
-Version 1.20 (Mon, Jun 25 2001)\r
-* Added quoted-printable encoding (Patrice)\r
-* Set Version as public and removed PrintVersion()\r
-* Changed phpdoc to only display public variables and methods\r
-\r
-Version 1.19 (Thu, Jun 21 2001)\r
-* Fixed MS Mail header bug\r
-* Added fix for Bcc problem with mail(). *Does not work on Win32*\r
-  (See PHP bug report: http://www.php.net/bugs.php?id=11616)\r
-* mail() no longer passes a fifth parameter when not needed\r
-\r
-Version 1.15 (Fri, Jun 15 2001)\r
-[Note: these changes contributed by Patrice Fournier]\r
-* Changed all remaining \n to \r\n\r
-* Bcc: header no longer writen to message except\r
-when sent directly to sendmail\r
-* Added a small message to non-MIME compliant mail reader\r
-* Added Sender variable to change the Sender email\r
-used in -f for sendmail/mail and in 'MAIL FROM' for smtp mode\r
-* Changed boundary setting to a place it will be set only once\r
-* Removed transfer encoding for whole message when using multipart\r
-* Message body now uses Encoding in multipart messages\r
-* Can set encoding and type to attachments 7bit, 8bit\r
-and binary attachment are sent as is, base64 are encoded\r
-* Can set Encoding to base64 to send 8 bits body\r
-through 7 bits servers\r
-\r
-Version 1.10 (Tue, Jun 12 2001)\r
-* Fixed win32 mail header bug (printed out headers in message body)\r
-\r
-Version 1.09 (Fri, Jun 08 2001)\r
-* Changed date header to work with Netscape mail programs\r
-* Altered phpdoc documentation\r
-\r
-Version 1.08 (Tue, Jun 05 2001)\r
-* Added enhanced error-checking\r
-* Added phpdoc documentation to source\r
-\r
-Version 1.06 (Fri, Jun 01 2001)\r
-* Added optional name for file attachments\r
-\r
-Version 1.05 (Tue, May 29 2001)\r
-* Code cleanup\r
-* Eliminated sendmail header warning message\r
-* Fixed possible SMTP error\r
-\r
-Version 1.03 (Thu, May 24 2001)\r
-* Fixed problem where qmail sends out duplicate messages\r
-\r
-Version 1.02 (Wed, May 23 2001)\r
-* Added multiple recipient and attachment Clear* methods\r
-* Added Sendmail public variable\r
-* Fixed problem with loading SMTP library multiple times\r
-\r
-Version 0.98 (Tue, May 22 2001)\r
-* Fixed problem with redundant mail hosts sending out multiple messages\r
-* Added additional error handler code\r
-* Added AddCustomHeader() function\r
-* Added support for Microsoft mail client headers (affects priority)\r
-* Fixed small bug with Mailer variable\r
-* Added PrintVersion() function\r
-\r
-Version 0.92 (Tue, May 15 2001)\r
-* Changed file names to class.phpmailer.php and class.smtp.php to match\r
-  current PHP class trend.\r
-* Fixed problem where body not being printed when a message is attached\r
-* Several small bug fixes\r
-\r
-Version 0.90 (Tue, April 17 2001)\r
-* Intial public release\r
+ChangeLog
+
+NOTE: THIS VERSION OF PHPMAILER IS DESIGNED FOR PHP5/PHP6. IT WILL NOT WORK WITH PHP4.
+
+Version 2.3 (November 06, 2008)
+
+* added Arabic language (many thanks to Bahjat Al Mostafa)
+* removed English language from language files and made it a default within
+  class.phpmailer.php - if no language is found, it will default to use
+  the english language translation
+* fixed public/private declarations
+* corrected line 1728, $basedir to $directory
+* added $sign_cert_file to avoid improper duplicate use of $sign_key_file
+* corrected $this->Hello on line 612 to $this->Helo
+* changed default of $LE to "\r\n" to comply with RFC 2822. Can be set by the user
+  if default is not acceptable
+* removed trim() from return results in EncodeQP
+* /test and three files it contained are removed from version 2.3
+* fixed phpunit.php for compliance with PHP5
+* changed $this->AltBody = $textMsg; to $this->AltBody = html_entity_decode($textMsg);
+* We have removed the /phpdoc from the downloads. All documentation is now on
+  the http://phpmailer.codeworxtech.com website.
+
+Version 2.2.1 () July 19 2008
+
+* fixed line 1092 in class.smtp.php (my apologies, error on my part)
+
+Version 2.2 () July 15 2008
+
+* Fixed redirect issue (display of UTF-8 in thank you redirect)
+* fixed error in getResponse function declaration (class.pop3.php)
+* PHPMailer now PHP6 compliant
+* fixed line 1092 in class.smtp.php (endless loop from missing = sign)
+
+Version 2.1 (Wed, June 04 2008)
+
+** NOTE: WE HAVE A NEW LANGUAGE VARIABLE FOR DIGITALLY SIGNED S/MIME EMAILS.
+   IF YOU CAN HELP WITH LANGUAGES OTHER THAN ENGLISH AND SPANISH, IT WOULD BE
+   APPRECIATED.
+
+* added S/MIME functionality (ability to digitally sign emails)
+  BIG THANKS TO "sergiocambra" for posting this patch back in November 2007.
+  The "Signed Emails" functionality adds the Sign method to pass the private key
+  filename and the password to read it, and then email will be sent with
+  content-type multipart/signed and with the digital signature attached.
+* fully compatible with E_STRICT error level
+  - Please note:
+    In about half the test environments this development version was subjected
+    to, an error was thrown for the date() functions used (line 1565 and 1569).
+    This is NOT a PHPMailer error, it is the result of an incorrectly configured
+    PHP5 installation. The fix is to modify your 'php.ini' file and include the
+    date.timezone = America/New York
+    directive, to your own server timezone
+  - If you do get this error, and are unable to access your php.ini file:
+    In your PHP script, add
+    date_default_timezone_set('America/Toronto');
+    - do not try to use
+    $myVar = date_default_timezone_get();
+    as a test, it will throw an error.
+* added ability to define path (mainly for embedded images)
+  function MsgHTML($message,$basedir='') ... where:
+  $basedir is the fully qualified path
+* fixed MsgHTML() function:
+  - Embedded Images where images are specified by <protocol>:// will not be altered or embedded
+* fixed the return value of SMTP exit code ( pclose )
+* addressed issue of multibyte characters in subject line and truncating
+* added ability to have user specified Message ID
+  (default is still that PHPMailer create a unique Message ID)
+* corrected unidentified message type to 'application/octet-stream'
+* fixed chunk_split() multibyte issue (thanks to Colin Brown, et al).
+* added check for added attachments
+* enhanced conversion of HTML to text in MsgHTML (thanks to "brunny")
+
+Version 2.1.0beta2 (Sun, Dec 02 2007)
+* implemented updated EncodeQP (thanks to coolbru, aka Marcus Bointon)
+* finished all testing, all known bugs corrected, enhancements tested
+- note: will NOT work with PHP4.
+
+please note, this is BETA software
+** DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS
+INTENDED STRICTLY FOR TESTING
+
+Version 2.1.0beta1
+please note, this is BETA software
+** DO NOT USE THIS IN PRODUCTION OR LIVE PROJECTS
+INTENDED STRICTLY FOR TESTING
+
+Version 2.0.0 rc2 (Fri, Nov 16 2007), interim release
+* implements new property to control VERP in class.smtp.php
+  example (requires instantiating class.smtp.php):
+  $mail->do_verp = true;
+* POP-before-SMTP functionality included, thanks to Richard Davey
+  (see class.pop3.php & pop3_before_smtp_test.php for examples)
+* included example showing how to use PHPMailer with GMAIL
+* fixed the missing Cc in SendMail() and Mail()
+
+******************
+A note on sending bulk emails:
+
+If the email you are sending is not personalized, consider using the
+"undisclosed-recipient:;" strategy. That is, put all of your recipients
+in the Bcc field and set the To field to "undisclosed-recipients:;".
+It's a lot faster (only one send) and saves quite a bit on resources.
+Contrary to some opinions, this will not get you listed in spam engines -
+it's a legitimate way for you to send emails.
+
+A partial example for use with PHPMailer:
+
+$mail->AddAddress("undisclosed-recipients:;");
+$mail->AddBCC("email1@anydomain.com,email2@anyotherdomain.com,email3@anyalternatedomain.com");
+
+Many email service providers restrict the number of emails that can be sent
+in any given time period. Often that is between 50 - 60 emails maximum
+per hour or per send session.
+
+If that's the case, then break up your Bcc lists into chunks that are one
+less than your limit, and put a pause in your script.
+*******************
+
+Version 2.0.0 rc1 (Thu, Nov 08 2007), interim release
+* dramatically simplified using inline graphics ... it's fully automated and requires no user input
+* added automatic document type detection for attachments and pictures
+* added MsgHTML() function to replace Body tag for HTML emails
+* fixed the SendMail security issues (input validation vulnerability)
+* enhanced the AddAddresses functionality so that the "Name" portion is used in the email address
+* removed the need to use the AltBody method (set from the HTML, or default text used)
+* set the PHP Mail() function as the default (still support SendMail, SMTP Mail)
+* removed the need to set the IsHTML property (set automatically)
+* added Estonian language file by Indrek P&auml;ri
+* added header injection patch
+* added "set" method to permit users to create their own pseudo-properties like 'X-Headers', etc.
+  example of use:
+  $mail->set('X-Priority', '3');
+  $mail->set('X-MSMail-Priority', 'Normal');
+* fixed warning message in SMTP get_lines method
+* added TLS/SSL SMTP support
+  example of use:
+  $mail = new PHPMailer();
+  $mail->Mailer = "smtp";
+  $mail->Host = "smtp.example.com";
+  $mail->SMTPSecure   = "tls"; // option
+  //$mail->SMTPSecure   = "ssl";  // option
+  ...
+  $mail->Send();
+* PHPMailer has been tested with PHP4 (4.4.7) and PHP5 (5.2.7)
+* Works with PHP installed as a module or as CGI-PHP
+- NOTE: will NOT work with PHP5 in E_STRICT error mode
+
+Version 1.73 (Sun, Jun 10 2005)
+* Fixed denial of service bug: http://www.cybsec.com/vuln/PHPMailer-DOS.pdf
+* Now has a total of 20 translations
+* Fixed alt attachments bug: http://tinyurl.com/98u9k
+
+Version 1.72 (Wed, May 25 2004)
+* Added Dutch, Swedish, Czech, Norwegian, and Turkish translations.
+* Received: Removed this method because spam filter programs like
+SpamAssassin reject this header.
+* Fixed error count bug.
+* SetLanguage default is now "language/".
+* Fixed magic_quotes_runtime bug.
+
+Version 1.71 (Tue, Jul 28 2003)
+* Made several speed enhancements
+* Added German and Italian translation files
+* Fixed HELO/AUTH bugs on keep-alive connects
+* Now provides an error message if language file does not load
+* Fixed attachment EOL bug
+* Updated some unclear documentation
+* Added additional tests and improved others
+
+Version 1.70 (Mon, Jun 20 2003)
+* Added SMTP keep-alive support
+* Added IsError method for error detection
+* Added error message translation support (SetLanguage)
+* Refactored many methods to increase library performance
+* Hello now sends the newer EHLO message before HELO as per RFC 2821
+* Removed the boundary class and replaced it with GetBoundary
+* Removed queue support methods
+* New $Hostname variable
+* New Message-ID header
+* Received header reformat
+* Helo variable default changed to $Hostname
+* Removed extra spaces in Content-Type definition (#667182)
+* Return-Path should be set to Sender when set
+* Adds Q or B encoding to headers when necessary
+* quoted-encoding should now encode NULs \000
+* Fixed encoding of body/AltBody (#553370)
+* Adds "To: undisclosed-recipients:;" when all recipients are hidden (BCC)
+* Multiple bug fixes
+
+Version 1.65 (Fri, Aug 09 2002)
+* Fixed non-visible attachment bug (#585097) for Outlook
+* SMTP connections are now closed after each transaction
+* Fixed SMTP::Expand return value
+* Converted SMTP class documentation to phpDocumentor format
+
+Version 1.62 (Wed, Jun 26 2002)
+* Fixed multi-attach bug
+* Set proper word wrapping
+* Reduced memory use with attachments
+* Added more debugging
+* Changed documentation to phpDocumentor format
+
+Version 1.60 (Sat, Mar 30 2002)
+* Sendmail pipe and address patch (Christian Holtje)
+* Added embedded image and read confirmation support (A. Ognio)
+* Added unit tests
+* Added SMTP timeout support (*nix only)
+* Added possibly temporary PluginDir variable for SMTP class
+* Added LE message line ending variable
+* Refactored boundary and attachment code
+* Eliminated SMTP class warnings
+* Added SendToQueue method for future queuing support
+
+Version 1.54 (Wed, Dec 19 2001)
+* Add some queuing support code
+* Fixed a pesky multi/alt bug
+* Messages are no longer forced to have "To" addresses
+
+Version 1.50 (Thu, Nov 08 2001)
+* Fix extra lines when not using SMTP mailer
+* Set WordWrap variable to int with a zero default
+
+Version 1.47 (Tue, Oct 16 2001)
+* Fixed Received header code format
+* Fixed AltBody order error
+* Fixed alternate port warning
+
+Version 1.45 (Tue, Sep 25 2001)
+* Added enhanced SMTP debug support
+* Added support for multiple ports on SMTP
+* Added Received header for tracing
+* Fixed AddStringAttachment encoding
+* Fixed possible header name quote bug
+* Fixed wordwrap() trim bug
+* Couple other small bug fixes
+
+Version 1.41 (Wed, Aug 22 2001)
+* Fixed AltBody bug w/o attachments
+* Fixed rfc_date() for certain mail servers
+
+Version 1.40 (Sun, Aug 12 2001)
+* Added multipart/alternative support (AltBody)
+* Documentation update
+* Fixed bug in Mercury MTA
+
+Version 1.29 (Fri, Aug 03 2001)
+* Added AddStringAttachment() method
+* Added SMTP authentication support
+
+Version 1.28 (Mon, Jul 30 2001)
+* Fixed a typo in SMTP class
+* Fixed header issue with Imail (win32) SMTP server
+* Made fopen() calls for attachments use "rb" to fix win32 error
+
+Version 1.25 (Mon, Jul 02 2001)
+* Added RFC 822 date fix (Patrice)
+* Added improved error handling by adding a $ErrorInfo variable
+* Removed MailerDebug variable (obsolete with new error handler)
+
+Version 1.20 (Mon, Jun 25 2001)
+* Added quoted-printable encoding (Patrice)
+* Set Version as public and removed PrintVersion()
+* Changed phpdoc to only display public variables and methods
+
+Version 1.19 (Thu, Jun 21 2001)
+* Fixed MS Mail header bug
+* Added fix for Bcc problem with mail(). *Does not work on Win32*
+  (See PHP bug report: http://www.php.net/bugs.php?id=11616)
+* mail() no longer passes a fifth parameter when not needed
+
+Version 1.15 (Fri, Jun 15 2001)
+[Note: these changes contributed by Patrice Fournier]
+* Changed all remaining \n to \r\n
+* Bcc: header no longer writen to message except
+when sent directly to sendmail
+* Added a small message to non-MIME compliant mail reader
+* Added Sender variable to change the Sender email
+used in -f for sendmail/mail and in 'MAIL FROM' for smtp mode
+* Changed boundary setting to a place it will be set only once
+* Removed transfer encoding for whole message when using multipart
+* Message body now uses Encoding in multipart messages
+* Can set encoding and type to attachments 7bit, 8bit
+and binary attachment are sent as is, base64 are encoded
+* Can set Encoding to base64 to send 8 bits body
+through 7 bits servers
+
+Version 1.10 (Tue, Jun 12 2001)
+* Fixed win32 mail header bug (printed out headers in message body)
+
+Version 1.09 (Fri, Jun 08 2001)
+* Changed date header to work with Netscape mail programs
+* Altered phpdoc documentation
+
+Version 1.08 (Tue, Jun 05 2001)
+* Added enhanced error-checking
+* Added phpdoc documentation to source
+
+Version 1.06 (Fri, Jun 01 2001)
+* Added optional name for file attachments
+
+Version 1.05 (Tue, May 29 2001)
+* Code cleanup
+* Eliminated sendmail header warning message
+* Fixed possible SMTP error
+
+Version 1.03 (Thu, May 24 2001)
+* Fixed problem where qmail sends out duplicate messages
+
+Version 1.02 (Wed, May 23 2001)
+* Added multiple recipient and attachment Clear* methods
+* Added Sendmail public variable
+* Fixed problem with loading SMTP library multiple times
+
+Version 0.98 (Tue, May 22 2001)
+* Fixed problem with redundant mail hosts sending out multiple messages
+* Added additional error handler code
+* Added AddCustomHeader() function
+* Added support for Microsoft mail client headers (affects priority)
+* Fixed small bug with Mailer variable
+* Added PrintVersion() function
+
+Version 0.92 (Tue, May 15 2001)
+* Changed file names to class.phpmailer.php and class.smtp.php to match
+  current PHP class trend.
+* Fixed problem where body not being printed when a message is attached
+* Several small bug fixes
+
+Version 0.90 (Tue, April 17 2001)
+* Intial public release