From c12b88072fbc9745bf6fc785d58348432f7215b9 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 11 Aug 2025 16:12:02 +0200 Subject: [PATCH] fixes --- server/utils/email.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/utils/email.ts b/server/utils/email.ts index 509e8ca..1d93e2f 100644 --- a/server/utils/email.ts +++ b/server/utils/email.ts @@ -213,7 +213,12 @@ export class EmailService { to: emailData.to, subject: emailData.subject, html: emailData.html, - text: emailData.text || undefined + text: emailData.text || undefined, + // Explicitly set content type to ensure HTML rendering + headers: { + 'Content-Type': 'text/html; charset=utf-8', + 'MIME-Version': '1.0' + } }; try {