mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
Fix Mime/Parser header detection: Don't render plaintext as Mime parts
This commit is contained in:
parent
ba496919dd
commit
96f63ac1c5
2 changed files with 17 additions and 4 deletions
|
|
@ -13,7 +13,7 @@ import { EmailModel } from 'Model/Email';
|
|||
export function MimeToMessage(data, message)
|
||||
{
|
||||
const struct = ParseMime(data);
|
||||
if (struct.headers) {
|
||||
if (struct.headRaw) {
|
||||
let html = struct.getByContentType('text/html'),
|
||||
subject = struct.headerValue('subject');
|
||||
html = html ? html.body : '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue