mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 11:55:20 +01:00
Added mailto/bcc support
This commit is contained in:
@@ -110,10 +110,10 @@ public class ActivityCompose extends ActivityBase implements FragmentManager.OnB
|
||||
Map<String, String> headers = mailto.getHeaders();
|
||||
if (headers != null)
|
||||
for (String key : headers.keySet())
|
||||
if ("in-reply-to".equalsIgnoreCase(key)) {
|
||||
if ("bcc".equalsIgnoreCase(key))
|
||||
args.putString("bcc", headers.get(key));
|
||||
else if ("in-reply-to".equalsIgnoreCase(key))
|
||||
args.putString("inreplyto", headers.get(key));
|
||||
break;
|
||||
}
|
||||
|
||||
String body = mailto.getBody();
|
||||
if (body != null) {
|
||||
|
||||
Reference in New Issue
Block a user