From 51830ca301cc0677a915b02a187a8c34f581107f Mon Sep 17 00:00:00 2001 From: jonathan langlois Date: Mon, 18 Dec 2023 09:29:05 -0800 Subject: [PATCH] chore: copy change email subject copy --- app/utils/mailer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/utils/mailer.ts b/app/utils/mailer.ts index 4ffbb10..beb13bc 100644 --- a/app/utils/mailer.ts +++ b/app/utils/mailer.ts @@ -184,7 +184,7 @@ export const sendDeleteEmail = (realm: Roster, session: Session) => {

We have received a request from ${username} for the deletion of ${realm.realm} Custom Realm. It will be deleted at approximately ${githubActionTriggerHour} as per our automated processes. Please contact the SSO team ASAP if you have any concerns.

${emailFooter} `, - subject: `${subjectPrefix}Update: Custom realm ${realm.realm} is in the process of being disabled.`, + subject: `${subjectPrefix}Important: Custom Realm ${realm.realm} is in the process of being Deleted.`, }); }; @@ -199,6 +199,6 @@ export const sendDeletionCompleteEmail = (realm: Roster) => {

This is to inform you that ${realm.realm} Custom Realm has now been deleted.

${emailFooter} `, - subject: `${subjectPrefix}Update: Custom realm ${realm.realm} has now been disabled.`, + subject: `${subjectPrefix}Notification: Custom Realm ${realm.realm} has now been Deleted.`, }); };