mirror of https://github.com/M66B/FairEmail.git
Assume UTF8 for HTML
This commit is contained in:
parent
3317a7e9ce
commit
f98dcd4fd7
|
@ -17,6 +17,8 @@
|
|||
package com.sun.mail.handlers;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
import javax.activation.*;
|
||||
import javax.mail.internet.ContentType;
|
||||
import javax.mail.internet.MimeUtility;
|
||||
|
@ -144,7 +146,10 @@ public class text_plain extends handler_base {
|
|||
String charset = ct.getParameter("charset");
|
||||
if (charset == null)
|
||||
// If the charset parameter is absent, use US-ASCII.
|
||||
charset = "us-ascii";
|
||||
if ("text/html".equalsIgnoreCase(ct.getBaseType()))
|
||||
charset = StandardCharsets.UTF_8.name();
|
||||
else
|
||||
charset = "us-ascii";
|
||||
return MimeUtility.javaCharset(charset);
|
||||
} catch (Exception ex) {
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue