+
+
- {{ t('mail.from') }}
+ -
+ {{
+ detail.header.fromName
+ ? `${detail.header.fromName} <${detail.header.fromEmail}>`
+ : (detail.header.fromEmail ?? '')
+ }}
+
+
+
+
- {{ t('mail.to') }}
+ - {{ joinAddresses(detail.header.toRecipients) }}
+
+
+
- {{ t('mail.cc') }}
+ - {{ joinAddresses(detail.header.ccRecipients) }}
+
+
+
- {{ t('mail.date') }}
+ - {{ formatDate(detail.header.sentAt ?? detail.header.receivedAt) }}
+
+