mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -05:00
Issue 3104: Can't bcc to more than 1 address
This commit is contained in:
parent
6fa1f39fcc
commit
e2a7a55cf3
@ -504,7 +504,10 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||||||
if (!ACTION_EDIT_DRAFT.equals(action)) {
|
if (!ACTION_EDIT_DRAFT.equals(action)) {
|
||||||
String bccAddress = mAccount.getAlwaysBcc();
|
String bccAddress = mAccount.getAlwaysBcc();
|
||||||
if ((bccAddress != null) && !("".equals(bccAddress))) {
|
if ((bccAddress != null) && !("".equals(bccAddress))) {
|
||||||
addAddress(mBccView, new Address(bccAddress, ""));
|
String[] bccAddresses = bccAddress.split(",");
|
||||||
|
for (String oneBccAddress : bccAddresses) {
|
||||||
|
addAddress(mBccView, new Address(oneBccAddress, ""));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user