Skip to content

Commit

Permalink
Merge pull request #2423 from cisagov/issue-2406/Testing_email_delive…
Browse files Browse the repository at this point in the history
…ry_revert_to_text

Testing SES email delivery system by reverting to text based email
  • Loading branch information
JCantu248 authored Dec 20, 2023
2 parents 69db9ec + a23f6a9 commit 9fdf034
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 9fdf034

Please sign in to comment.