TF-1759: Check when replying and all replies will include me in the recipient!
(cherry picked from commit f6481d05c18855a03d2b1cb2d4b94496d5b21d5b)
This commit is contained in:
@@ -112,7 +112,7 @@ extension PresentationEmailExtension on PresentationEmail {
|
||||
if (mailboxRole == PresentationMailbox.roleSent) {
|
||||
return Tuple3(to.asList(), [], []);
|
||||
} else {
|
||||
final replyToAddress = replyTo.asList().isNotEmpty ? replyTo.asList() : from.asList();
|
||||
final replyToAddress = replyTo.asList().isNotEmpty ? to.asList() + replyTo.asList() : from.asList();
|
||||
return Tuple3(replyToAddress, [], []);
|
||||
}
|
||||
case EmailActionType.replyAll:
|
||||
|
||||
Reference in New Issue
Block a user