Skip to content

Commit

Permalink
Fix issue #2008 - MS Outlook corrupts formatting multipart EML files (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
lubosdz committed Mar 9, 2020
1 parent a55152f commit 55e0b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPMailer.php
Expand Up @@ -2606,7 +2606,7 @@ public function createBody()
$altBodyEncoding = static::ENCODING_QUOTED_PRINTABLE;
}
//Use this as a preamble in all multipart message types
$mimepre = 'This is a multi-part message in MIME format.' . static::$LE;
$mimepre = 'This is a multi-part message in MIME format.' . static::$LE . static::$LE;
switch ($this->message_type) {
case 'inline':
$body .= $mimepre;
Expand Down

0 comments on commit 55e0b34

Please sign in to comment.