6.4.0
This commit is contained in:
parent
95438b776d
commit
050d430203
|
|
@ -1,10 +1,10 @@
|
|||
# PHPMailer Change Log
|
||||
|
||||
## WIP
|
||||
## Version 6.4.0 (March 31st, 2021)
|
||||
* Revert change that made the `mail()` and sendmail transports set the envelope sender if one isn't explicitly provided, as it causes problems described in <https://github.com/PHPMailer/PHPMailer/issues/2298>
|
||||
* Check for mbstring extension before decoding addresss in `parseAddress`
|
||||
* Add Serbian Latin translation (`sr_latn`)
|
||||
* Enrol PHPMailer in Tidelift
|
||||
* Revert change that made the `mail()` and sendmail transports set the envelope sender if one isn't explicitly provided, as it causes problems described at <https://github.com/PHPMailer/PHPMailer/issues/2298>
|
||||
|
||||
## Version 6.3.0 (February 19th, 2021)
|
||||
* Handle early connection errors such as 421 during connection and EHLO states
|
||||
|
|
|
|||
|
|
@ -748,7 +748,7 @@ class PHPMailer
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.3.0';
|
||||
const VERSION = '6.4.0';
|
||||
|
||||
/**
|
||||
* Error severity: message only, continue processing.
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class POP3
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.3.0';
|
||||
const VERSION = '6.4.0';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class SMTP
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '6.3.0';
|
||||
const VERSION = '6.4.0';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
|
|||
Loading…
Reference in New Issue