7.0.2
This commit is contained in:
parent
b938991866
commit
ebf1655bd5
|
|
@ -1,5 +1,9 @@
|
|||
# PHPMailer Change Log
|
||||
|
||||
## Version 7.0.2 (January 9th, 2026)
|
||||
* Fixes for sendmail parameter problems in WordPress, thanks to @SirLouen
|
||||
* Reduce memory consumption when sending large attachments by @RobinvanderVliet
|
||||
|
||||
## Version 7.0.1 (November 25th, 2025)
|
||||
* Use From domain when generating CIDs in msgHTML.
|
||||
* Update to PHPCompatibility 10, resolve numerous PHPCS issues in PHP 8.5.
|
||||
|
|
|
|||
|
|
@ -768,7 +768,7 @@ class PHPMailer
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '7.0.1';
|
||||
const VERSION = '7.0.2';
|
||||
|
||||
/**
|
||||
* Error severity: message only, continue processing.
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ class POP3
|
|||
* @var string
|
||||
* @deprecated This constant will be removed in PHPMailer 8.0. Use `PHPMailer::VERSION` instead.
|
||||
*/
|
||||
const VERSION = '7.0.1';
|
||||
const VERSION = '7.0.2';
|
||||
|
||||
/**
|
||||
* Default POP3 port number.
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ class SMTP
|
|||
* @var string
|
||||
* @deprecated This constant will be removed in PHPMailer 8.0. Use `PHPMailer::VERSION` instead.
|
||||
*/
|
||||
const VERSION = '7.0.1';
|
||||
const VERSION = '7.0.2';
|
||||
|
||||
/**
|
||||
* SMTP line break constant.
|
||||
|
|
|
|||
Loading…
Reference in New Issue