Bug 1095629 - Don't force plaintext sendformat for MAPI compositions. r=jorgk

This commit is contained in:
Thomas Düllmann 2015-10-22 15:06:00 +02:00
Родитель d08244a540
Коммит 02218f46c1
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -436,9 +436,6 @@ nsresult nsMapiHook::PopulateCompFields(lpnsMapiMessage aMessage,
if (Body.Last() != '\n')
Body.AppendLiteral(CRLF);
if (Body.Find("<html>") == kNotFound)
aCompFields->SetForcePlainText(true);
rv = aCompFields->SetBody(Body) ;
}
return rv ;
@ -641,9 +638,6 @@ nsresult nsMapiHook::PopulateCompFieldsWithConversion(lpnsMapiMessage aMessage,
if (Body.Last() != '\n')
Body.AppendLiteral(CRLF);
if (Body.Find("<html>") == kNotFound)
aCompFields->SetForcePlainText(true);
rv = aCompFields->SetBody(Body) ;
}