This commit is contained in:
@@ -213,7 +213,12 @@ export class EmailService {
|
|||||||
to: emailData.to,
|
to: emailData.to,
|
||||||
subject: emailData.subject,
|
subject: emailData.subject,
|
||||||
html: emailData.html,
|
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 {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user