TF-3601 View entire message on dialog

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-31 04:29:39 +07:00
committed by Dat H. Pham
parent 1c97c8a189
commit 7342bbc11d
19 changed files with 273 additions and 1 deletions
@@ -58,6 +58,16 @@ extension PresentationEmailExtension on PresentationEmail {
return '';
}
String getSentAt(String newLocale, {String? pattern}) {
if (sentAt != null) {
return sentAt!.formatDateToLocal(
pattern: pattern ?? sentAt!.value.toLocal().toPattern(),
locale: newLocale,
);
}
return '';
}
Set<EmailAddress> get listEmailAddressSender => from.asSet()..addAll(replyTo.asSet());
PresentationEmail toggleSelect() {