0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 18:03:04 +02:00

Ensure there's a line break after headers, fixes #1872, #1871

This commit is contained in:
Marcus Bointon 2019-10-23 14:42:32 +02:00
parent 564f139ca6
commit ae5e6fa488

View File

@ -2438,7 +2438,7 @@ class PHPMailer
$result .= $this->getMailMIME(); $result .= $this->getMailMIME();
} }
return $result; return $result . static::$LE;
} }
/** /**