From 24d9bf18f54dac1ab2a63f3ad4ec06e98f40e14c Mon Sep 17 00:00:00 2001 From: JCantu248 Date: Tue, 19 Dec 2023 15:30:12 -0600 Subject: [PATCH] Fixing inline html for testing purposes. --- backend/src/api/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/helpers.ts b/backend/src/api/helpers.ts index 7557ff744..ca47527d0 100644 --- a/backend/src/api/helpers.ts +++ b/backend/src/api/helpers.ts @@ -128,7 +128,7 @@ export const sendUserNotificationEmail = async ( from: process.env.CROSSFEED_SUPPORT_EMAIL_SENDER, to: recepient, subject: p_subject, - html: "

Testing email

" + html: '

Testing

' }; await transporter.sendMail(mailOptions);