5.2.12 release
This commit is contained in:
parent
cbd7fa984c
commit
5dd754112d
|
|
@ -50,11 +50,7 @@ or
|
|||
composer require phpmailer/phpmailer
|
||||
```
|
||||
|
||||
or use the command below:
|
||||
|
||||
```sh
|
||||
composer require phpmailer/phpmailer
|
||||
```
|
||||
If you want to use the Gmail XOAUTH2 authentication class, you will also need to add a dependency on the `league/oauth2-client` package.
|
||||
|
||||
Alternatively, copy the contents of the PHPMailer folder into somewhere that's in your PHP `include_path` setting. If you don't speak git or just want a tarball, click the 'zip' button at the top of the page in GitHub.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
# ChangeLog
|
||||
|
||||
## Version 5.2.12 (Sep 1st 2015)
|
||||
* Fix incorrect composer package dependencies
|
||||
* Skip existing embedded image `cid`s in `msgHTML`
|
||||
|
||||
## Version 5.2.11 (Aug 31st 2015)
|
||||
* Don't switch to quoted-printable for long lines if already using base64
|
||||
* Fixed Travis-CI config when run on PHP 7
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class PHPMailer
|
|||
* The PHPMailer Version number.
|
||||
* @type string
|
||||
*/
|
||||
public $Version = '5.2.11';
|
||||
public $Version = '5.2.12';
|
||||
|
||||
/**
|
||||
* Email priority.
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class POP3
|
|||
* @type string
|
||||
* @access public
|
||||
*/
|
||||
public $Version = '5.2.11';
|
||||
public $Version = '5.2.12';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class SMTP
|
|||
* The PHPMailer SMTP version number.
|
||||
* @type string
|
||||
*/
|
||||
const VERSION = '5.2.11';
|
||||
const VERSION = '5.2.12';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
@ -81,7 +81,7 @@ class SMTP
|
|||
* @deprecated Use the `VERSION` constant instead
|
||||
* @see SMTP::VERSION
|
||||
*/
|
||||
public $Version = '5.2.11';
|
||||
public $Version = '5.2.12';
|
||||
|
||||
/**
|
||||
* SMTP server port number.
|
||||
|
|
|
|||
Loading…
Reference in New Issue