mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Fixed plain only charset
This commit is contained in:
parent
f293c1a0e9
commit
83f8a349ab
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ public class MessageHelper {
|
|||
|
||||
if (availableAttachments == 0)
|
||||
if (message.plain_only != null && message.plain_only)
|
||||
imessage.setContent(plainContent, plainPart.getContentType());
|
||||
imessage.setContent(plainContent, "text/plain; charset=" + Charset.defaultCharset().name());
|
||||
else
|
||||
imessage.setContent(altMultiPart);
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue