From 99dd75344a7d9dd1254b5cd079db963a5be2ebc3 Mon Sep 17 00:00:00 2001 From: lperez22 <91892011+lperez22@users.noreply.github.com> Date: Wed, 14 Sep 2022 13:58:27 -0400 Subject: [PATCH] Update mailer.js fixed typo --- services/graphql/src/mailer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graphql/src/mailer.js b/services/graphql/src/mailer.js index 69e501d..2748aba 100644 --- a/services/graphql/src/mailer.js +++ b/services/graphql/src/mailer.js @@ -37,7 +37,7 @@ module.exports = { return send({ to, subject, html }); }, async thank(submission, { req }) { - const subject = 'Your requested updates have been recieved'; + const subject = 'Your requested updates have been received'; const html = await render('thankYou', { ...common, uri: `http://${req.get('host')}`, submission }); const { name, email } = submission; const to = `${name} <${email}>`;