1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

Fixed send debug info immediately

This commit is contained in:
M66B 2023-10-08 22:50:16 +02:00
parent 518ca768d1
commit 892ed3a0ad

View file

@ -1828,6 +1828,7 @@ public class Log {
draft.identity = identity.id;
draft.msgid = EntityMessage.generateMessageId();
draft.thread = draft.msgid;
draft.from = new Address[]{new InternetAddress(identity.email, identity.name, StandardCharsets.UTF_8.name())};
draft.to = new Address[]{myAddress()};
draft.subject = context.getString(R.string.app_name) + " " + getVersionInfo(context) + " debug info - " + source;
draft.received = new Date().getTime();