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 {