diff --git a/docs/book/message/attachments.md b/docs/book/message/attachments.md index 82b9ee3a..ffe8ffbe 100644 --- a/docs/book/message/attachments.md +++ b/docs/book/message/attachments.md @@ -116,7 +116,8 @@ $content = new MimeMessage(); // This order is important for email clients to properly display the correct version of the content $content->setParts([$text, $html]); -$contentPart = new MimePart($content->generateMessage()); +$contentPart = new MimePart($content->generateMessage()); +$contentPart->type = 'multipart/alternative; boundary="' . $contentPart->getMime()->boundary() . '"'; $image = new MimePart(fopen($pathToImage, 'r')); $image->type = 'image/jpeg';