From ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088 Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Fri, 9 Jan 2026 19:02:33 +0100 Subject: [PATCH] 7.0.2 --- VERSION | 2 +- changelog.md | 4 ++++ src/PHPMailer.php | 2 +- src/POP3.php | 2 +- src/SMTP.php | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 9fe9ff9d..a8907c02 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.0.1 +7.0.2 diff --git a/changelog.md b/changelog.md index 9a66023d..7b1f5a5a 100644 --- a/changelog.md +++ b/changelog.md @@ -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. diff --git a/src/PHPMailer.php b/src/PHPMailer.php index eee30a67..2bb3578c 100644 --- a/src/PHPMailer.php +++ b/src/PHPMailer.php @@ -768,7 +768,7 @@ class PHPMailer * * @var string */ - const VERSION = '7.0.1'; + const VERSION = '7.0.2'; /** * Error severity: message only, continue processing. diff --git a/src/POP3.php b/src/POP3.php index bf43acaf..186fe9fe 100644 --- a/src/POP3.php +++ b/src/POP3.php @@ -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. diff --git a/src/SMTP.php b/src/SMTP.php index 1abf967c..559b52c4 100644 --- a/src/SMTP.php +++ b/src/SMTP.php @@ -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.