TF-1865: Get content sending email when open item

(cherry picked from commit 3fdec172d72e27020187679d79ffe4f44953678b)
This commit is contained in:
HuyNguyen
2023-06-05 01:50:52 +07:00
committed by Dat Vu
parent 48d32b048d
commit 5a394e1719
2 changed files with 40 additions and 17 deletions
+17 -16
View File
@@ -145,22 +145,23 @@ extension EmailExtension on Email {
}
) {
return PresentationEmail(
id: emailId ?? id,
keywords: keywords,
size: size,
receivedAt: receivedAt,
hasAttachment: hasAttachment,
preview: preview,
subject: subject,
sentAt: createAt ?? sentAt,
from: from,
to: to,
cc: cc,
bcc: bcc,
replyTo: replyTo,
mailboxIds: mailboxIds,
selectMode: selectMode,
emailHeader: headers?.toList()
id: emailId ?? id,
keywords: keywords,
size: size,
receivedAt: receivedAt,
hasAttachment: hasAttachment,
preview: preview,
subject: subject,
sentAt: createAt ?? sentAt,
from: from,
to: to,
cc: cc,
bcc: bcc,
replyTo: replyTo,
mailboxIds: mailboxIds,
selectMode: selectMode,
emailHeader: headers?.toList(),
bodyValues: bodyValues
);
}
}