Fix to_address being logged twice

This commit is contained in:
Michael Kuhn 2019-03-09 20:09:16 +01:00
parent 900cdbbb31
commit dd9e93384e
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class Mailer {
$to_combined = $to_name ? "$to_name <$to_address>" : $to_address;
if (defined('_LOG_SENT_MAIL') && _LOG_SENT_MAIL)
Logger::get()->log("Sending mail from $from_combined to $to_combined <$to_address> [$subject]: $message");
Logger::get()->log("Sending mail from $from_combined to $to_combined [$subject]: $message");
// HOOK_SEND_MAIL plugin instructions:
// 1. return 1 or true if mail is handled