From: Philipp Date: Tue, 22 Sep 2020 20:48:34 +0000 (+0200) Subject: Fix phpmailer (Case sensitive Check) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7fd4511a214275eddd0445b6185d9dbea814df5d;p=friendica-addons.git Fix phpmailer (Case sensitive Check) --- diff --git a/phpmailer/phpmailer.php b/phpmailer/phpmailer.php index 5b43c8f1..3f6f5f5f 100644 --- a/phpmailer/phpmailer.php +++ b/phpmailer/phpmailer.php @@ -92,7 +92,7 @@ function phpmailer_emailer_send_prepare(App $a, IEmail &$email) if (!empty($email->getAdditionalMailHeader())) { foreach ($email->getAdditionalMailHeader() as $name => $values) { // Set the "Message-ID" header for PHP-Mailer directly - if ($name == 'Message-Id') { + if (strtolower($name) === 'message-id') { // implode all values to one entry, because there's only one value possible $mailer->MessageID = trim(implode("", $values)); } else {