fixes
Build And Push Image / docker (push) Successful in 3m16s Details

This commit is contained in:
Matt 2025-08-11 16:12:02 +02:00
parent f4044c4477
commit c12b88072f
1 changed files with 6 additions and 1 deletions

View File

@ -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 {