diff options
author | Thomas Lehmann <t.lehmann@strato.de> | 2024-11-07 11:02:17 +0100 |
---|---|---|
committer | Thomas Lehmann <147605810+thlehmann-ionos@users.noreply.github.com> | 2024-11-19 11:32:39 +0100 |
commit | 46d8a7333b9b77ccc440afd0a3c3fe7c5bc3901c (patch) | |
tree | aa47a3157bda319a5fc4c10a564a92ec234f03d6 /lib/private | |
parent | 6559c2075e46c796ff518b0e23e38534783ed194 (diff) | |
download | nextcloud-server-46d8a7333b9b77ccc440afd0a3c3fe7c5bc3901c.tar.gz nextcloud-server-46d8a7333b9b77ccc440afd0a3c3fe7c5bc3901c.zip |
feat(Mailer): implement caching
Currently $this->instance is never set, so the code is no-op. This
brings back caching of the instance.
Caching broke with
be7db1573dc8c6e7309ec9db124a7a74b8b41199
Swift to \Swift_Mailer as abstraction
Signed-off-by: Thomas Lehmann <t.lehmann@strato.de>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Mail/Mailer.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php index da3fcd35888..b0c08815f1e 100644 --- a/lib/private/Mail/Mailer.php +++ b/lib/private/Mail/Mailer.php @@ -267,7 +267,9 @@ class Mailer implements IMailer { break; } - return new SymfonyMailer($transport); + $this->instance = new SymfonyMailer($transport); + + return $this->instance; } /** |