diff --git a/services/web/app/src/Features/Email/EmailBuilder.js b/services/web/app/src/Features/Email/EmailBuilder.js index d839d67f63..3e547c3974 100644 --- a/services/web/app/src/Features/Email/EmailBuilder.js +++ b/services/web/app/src/Features/Email/EmailBuilder.js @@ -536,7 +536,14 @@ templates.groupSSOReauthenticate = ctaTemplate({ ] }, secondaryMessage(opts) { - return [``] + if (!opts.isManagedUser) { + return [''] + } else { + const passwordResetUrl = `${settings.siteUrl}/user/password/reset` + return [ + `If you’re not currently logged in to Overleaf, you'll need to set a new password to reauthenticate.`, + ] + } }, ctaURL(opts) { return opts.authenticateWithSSO