diff --git a/services/web/app/src/Features/Email/EmailBuilder.js b/services/web/app/src/Features/Email/EmailBuilder.js index e24574c6c3..dddc1ac06a 100644 --- a/services/web/app/src/Features/Email/EmailBuilder.js +++ b/services/web/app/src/Features/Email/EmailBuilder.js @@ -233,6 +233,20 @@ If you didn't request a password reset, let us know.\ } }) +templates.passwordChanged = NoCTAEmailTemplate({ + subject(opts) { + return `Password Changed - ${settings.appName}` + }, + title(opts) { + return `Password Changed` + }, + message(opts) { + return `We're contacting you to notify you that your password has been set or changed. + +If you have recently set your password for the first time, or if you just changed your password, you don't need to take any further action. If you didn't set or change your password, please contact us.` + } +}) + templates.confirmEmail = CTAEmailTemplate({ subject() { return `Confirm Email - ${settings.appName}`