fix: Display "To" in email meta header on outgoing messages (#11717)

This commit is contained in:
Sivin Varghese
2025-06-12 18:01:12 +05:30
committed by GitHub
parent ac3bce3932
commit e54e80a936

View File

@@ -14,7 +14,8 @@ const fromEmail = computed(() => {
}); });
const toEmail = computed(() => { const toEmail = computed(() => {
return contentAttributes.value?.email?.to ?? []; const { toEmails, email } = contentAttributes.value;
return email?.to ?? toEmails ?? [];
}); });
const ccEmail = computed(() => { const ccEmail = computed(() => {