6.9.2
This commit is contained in:
parent
f658da94f1
commit
a7b17b42fa
|
|
@ -47,7 +47,7 @@ This software is distributed under the [LGPL 2.1](https://www.gnu.org/licenses/o
|
|||
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.9.1"
|
||||
"phpmailer/phpmailer": "^6.9.2"
|
||||
```
|
||||
|
||||
or run
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# PHPMailer Change Log
|
||||
|
||||
## WIP
|
||||
## Version 6.9.2 (October 9th, 2024)
|
||||
* Escape dots in SMTP transaction ID patterns
|
||||
* Add link to [aboutmy.email](https://aboutmy.email) testing service in docs
|
||||
* Add a more comprehensive example for using XOAUTH2 with gmail and Azure, thanks to @decomplexity
|
||||
|
|
|
|||
|
|
@ -756,7 +756,7 @@ class PHPMailer
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.9.1';
|
||||
const VERSION = '6.9.2';
|
||||
|
||||
/**
|
||||
* Error severity: message only, continue processing.
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class POP3
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.9.1';
|
||||
const VERSION = '6.9.2';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class SMTP
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.9.1';
|
||||
const VERSION = '6.9.2';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
|
|||
Loading…
Reference in New Issue