mirror of https://github.com/M66B/FairEmail.git
Added mailto/bcc support
This commit is contained in:
parent
be3073944b
commit
02e43af51f
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue