]> git.mxchange.org Git - core.git/blobdiff - inc/classes/third_party/php_mailer/ChangeLog.txt
Introduced new setter/getter and generic interface:
[core.git] / inc / classes / third_party / php_mailer / ChangeLog.txt
index 377ac5b341b3e9d87da41ea5bc98d24676fa9cb2..9533ccd9976fe095bfc7e33113977064707df0a3 100644 (file)
@@ -1,13 +1,36 @@
-/*******************************************************************\r
-* The http://phpmailer.codeworxtech.com/ website now carries a few *\r
-* advertisements through the Google Adsense network. Please visit  *\r
-* the advertiser sites and help us offset some of our costs.       *\r
-* Thanks ....                                                      *\r
-********************************************************************/\r
-\r
 ChangeLog\r
 \r
-NOTE: THIS VERSION OF PHPMAILER IS DESIGNED FOR PHP5. IT WILL NOT WORK WITH PHP4.\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
@@ -17,9 +40,9 @@ Version 2.1 (Wed, June 04 2008)
 \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
+  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
@@ -113,11 +136,11 @@ Version 2.0.0 rc1 (Thu, Nov 08 2007), interim release
 * 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->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