mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-15 09:10:19 +01:00
Always specify charset for email addresses
This commit is contained in:
@@ -198,7 +198,7 @@ public class MessageHelper {
|
||||
name = null;
|
||||
Log.i("extra=" + email);
|
||||
}
|
||||
imessage.setFrom(new InternetAddress(email, name));
|
||||
imessage.setFrom(new InternetAddress(email, name, StandardCharsets.UTF_8.name()));
|
||||
}
|
||||
|
||||
if (message.to != null && message.to.length > 0)
|
||||
|
||||
Reference in New Issue
Block a user