fixes
Build And Push Image / docker (push) Successful in 3m16s
Details
Build And Push Image / docker (push) Successful in 3m16s
Details
This commit is contained in:
parent
f4044c4477
commit
c12b88072f
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue