Skip to content

Commit

Permalink
Revert html email back to text.
Browse files Browse the repository at this point in the history
  • Loading branch information
JCantu248 committed Dec 20, 2023
1 parent 69db9ec commit a23f6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/api/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const sendUserNotificationEmail = async (
from: process.env.CROSSFEED_SUPPORT_EMAIL_SENDER,
to: recepient,
subject: p_subject,
html: '<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body><p>Testing</p></body></html>'
text: 'Testing'
};

await transporter.sendMail(mailOptions);
Expand Down

0 comments on commit a23f6a9

Please sign in to comment.