We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884e55e commit d91e49aCopy full SHA for d91e49a
lib/internal/Magento/Framework/Mail/EmailMessage.php
@@ -279,7 +279,7 @@ private function sanitiseEmail(?string $email): ?string
279
if (!empty($email) && str_contains($email, '=?')) {
280
$decodedValue = trim(iconv_mime_decode($email, ICONV_MIME_DECODE_CONTINUE_ON_ERROR, 'UTF-8'));
281
if ($this->isEncoded(trim($email), $decodedValue)) {
282
- $email = strtolower($decodedValue);
+ $email = strtolower(str_replace('=22', '', $email));
283
}
284
285
0 commit comments