PHPMailer 6.1.0
This commit is contained in:
parent
689d243f94
commit
69892e4e06
|
|
@ -40,7 +40,7 @@ This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lg
|
|||
PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file:
|
||||
|
||||
```json
|
||||
"phpmailer/phpmailer": "~6.0"
|
||||
"phpmailer/phpmailer": "~6.1"
|
||||
```
|
||||
|
||||
or run
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
# PHPMailer Change Log
|
||||
|
||||
## Version 6.1.0 (September 27th 2019)
|
||||
* Multiple bug fixes for folding of long header lines, thanks to @caugner
|
||||
* Add support for [RFC2387 child element content-type hint](https://tools.ietf.org/html/rfc2387#section-3.1) in `multipart/related` structures.
|
||||
* Support for Ical event methods other than `REQUEST`, thanks to @puhr-mde
|
||||
|
|
|
|||
|
|
@ -745,7 +745,7 @@ class PHPMailer
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.0.7';
|
||||
const VERSION = '6.1.0';
|
||||
|
||||
/**
|
||||
* Error severity: message only, continue processing.
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ class POP3
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.0.7';
|
||||
const VERSION = '6.1.0';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class SMTP
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.0.7';
|
||||
const VERSION = '6.1.0';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
|
|||
Loading…
Reference in New Issue