From 8fc7142a46e6040f8e9c25986b0f7feab3f0de4a Mon Sep 17 00:00:00 2001 From: Maduranga Siriwardena Date: Mon, 16 Oct 2023 11:16:47 +0530 Subject: [PATCH 1/2] Unify the common email templates --- .../notification/NotificationConstants.java | 1 + .../notification/util/NotificationUtil.java | 20 +- .../resources/email-admin-config.xml | 16880 ++++++++++++++-- 3 files changed, 14890 insertions(+), 2011 deletions(-) diff --git a/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/NotificationConstants.java b/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/NotificationConstants.java index c834b703..d0f767f3 100644 --- a/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/NotificationConstants.java +++ b/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/NotificationConstants.java @@ -93,6 +93,7 @@ public static class EmailNotification { public static final String BRANDING_PREFERENCES_IS_ENABLED_PATH = "/configs/isBrandingEnabled"; public static final String BRANDING_PREFERENCES_COPYRIGHT_TEXT_PATH = "/organizationDetails/copyrightText"; public static final String BRANDING_PREFERENCES_SUPPORT_EMAIL_PATH = "/organizationDetails/supportEmail"; + public static final String BRANDING_PREFERENCES_DISPLAY_NAME_PATH = "/organizationDetails/displayName"; public static final String BRANDING_PREFERENCES_LOGO_URL_PATH = "/images/logo/imgURL"; public static final String BRANDING_PREFERENCES_LOGO_ALTTEXT_PATH = "/images/logo/altText"; public static final String BRANDING_PREFERENCES_LIGHT_THEME = "LIGHT"; diff --git a/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/util/NotificationUtil.java b/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/util/NotificationUtil.java index 95824755..2ebf82c6 100644 --- a/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/util/NotificationUtil.java +++ b/components/event-handler-notification/org.wso2.carbon.identity.event.handler.notification/src/main/java/org/wso2/carbon/identity/event/handler/notification/util/NotificationUtil.java @@ -73,7 +73,6 @@ import java.util.Iterator; import java.util.List; import java.util.Map; -import java.util.Objects; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -81,6 +80,7 @@ import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.ACCOUNT_RECOVERY_ENDPOINT_PLACEHOLDER; import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.AUTHENTICATION_ENDPOINT_PLACEHOLDER; import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.BRANDING_PREFERENCES_COPYRIGHT_TEXT_PATH; +import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.BRANDING_PREFERENCES_DISPLAY_NAME_PATH; import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.BRANDING_PREFERENCES_LOGO_ALTTEXT_PATH; import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.BRANDING_PREFERENCES_LOGO_URL_PATH; import static org.wso2.carbon.identity.event.handler.notification.NotificationConstants.EmailNotification.BRANDING_PREFERENCES_SUPPORT_EMAIL_PATH; @@ -447,6 +447,13 @@ public static String getBrandingPreference(String key, JsonNode brandingPreferen ? brandingPreferences.at(BRANDING_PREFERENCES_SUPPORT_EMAIL_PATH).asText() : brandingFallbacks.get("support_mail"); break; + case ORGANIZATION_NAME_PLACEHOLDER : + value = (brandingIsEnabled && StringUtils.isNotBlank( + brandingPreferences.at(BRANDING_PREFERENCES_DISPLAY_NAME_PATH).asText())) + ? brandingPreferences.at(BRANDING_PREFERENCES_DISPLAY_NAME_PATH).asText() + : null; // Default value is not handled here since the parameter is not passed. + // It will be handled in the caller. + break; case "organization.color.primary" : value = brandingIsEnabled ? !StringUtils.isBlank(getBrandingPreferenceByTheme(brandingPreferences, theme, "/colors/primary/main")) @@ -551,12 +558,15 @@ public static Notification buildNotification(Event event, Map pl int currentYear = Calendar.getInstance().get(Calendar.YEAR); placeHolderData.put("current-year", String.valueOf(currentYear)); - // Resolve human-readable organization name, and add it to "organization-name" placeholder. - String organizationName = resolveHumanReadableOrganizationName(tenantDomain); - placeHolderData.put(ORGANIZATION_NAME_PLACEHOLDER, organizationName); - NotificationUtil.getPlaceholderValues(emailTemplate, placeHolderData, userClaims); + if (StringUtils.isBlank(placeHolderData.get(ORGANIZATION_NAME_PLACEHOLDER))) { + // If the organization display name is not configured with branding, + // set "organization-name" placeholder to organization name. + String organizationName = resolveHumanReadableOrganizationName(tenantDomain); + placeHolderData.put(ORGANIZATION_NAME_PLACEHOLDER, organizationName); + } + Notification.EmailNotificationBuilder builder = new Notification.EmailNotificationBuilder(sendTo); builder.setSendFrom(sendFrom); diff --git a/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml b/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml index 9e31402b..1273eb78 100644 --- a/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml +++ b/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml @@ -24,1357 +24,10002 @@ - WSO2 - Password Reset - - - - - - - - - - - - - - - - - - - - - - - - - + Reset your password + + + + + + + + Reset your password + + + + + + +
- -
-

- Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- We received a request to reset the password for the {{user-name}} account that is associated with this email address.
- If you made this request, please click the button below to securely reset your password. -

-
- - - - -
- Reset Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{callback}} -

-
-

- If you did not request to have your {{user-name}} password reset, disregard this email and no changes to your account will be made. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054, USA -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Reset your password +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Resend Password Reset - - - - - - - - - - - - - - - - - - - - - - - - - + Reset your password + + + + + + + + Reset your password + + + + + + +
- -
-

- Resend Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- We received a request to reset the password for the {{user-name}} account that is associated with this email address.
- If you made this request, please click the button below to securely reset your password. -

-
- - - - -
- Reset Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{callback}} -

-
-

- If you did not request to have your {{user-name}} password reset, disregard this email and no changes to your account will be made. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Reset your password +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your email + + + + + + + + Confirm your email + + + + + + +
- -
-

- Email Confirmation -

-
-

- Hi {{user.claim.givenname}}, -

-

- You have created an account with the following user name.
- User Name: {{user-name}}
- Please click the button below to confirm your account. -

-
- - - - -
- Confirm Account -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your email +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Account Recovery - - - - - - - - - - - - - - - - - - - + Recover your account + + + + + + + + Recover your account + + + + + + +
- -
-

- Account Recovery -

-
-

- Hi {{user.claim.givenname}}, -

-

- We received a request to recover your account user name. The account associated with us indicates that - your user name is {{userstore-domain}}/{{user-name}}@{{tenant-domain}}. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Recover your account +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Account Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your account + + + + + + + + Confirm your account + + + + + + +
- -
-

- Account Confirmation -

-
-

- Hi {{user.claim.givenname}}, -

-

- You have created an account with the following user name.
- User Name: {{user-name}}
- Please click the button below to confirm your account. -

-
- - - - -
- Confirm Account -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{callback}} - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your account +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Resend Account Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your account + + + + + + + + Confirm your account + + + + + + +
- -
-

- Resend Account Confirmation -

-
-

- Hi {{user.claim.givenname}}, -

-

- You have created an account with the following user name.
- User Name: {{user-name}}
- Please click the below button to confirm your account. -

-
- - - - -
- Confirm Registration -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your account +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Temporary Password - - - - - - - - - - - - - - - - - - - + Here is your temporary password + + + + + + + + Here is your temporary password + + + + + + +
- -
-

- Temporary Password -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please find your temporary password below.
- User Name: {{user-name}}
- Temporary Password: {{temporary-password}} -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your temporary password +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - One Time Password Reset - - - - - - - - - - - - - - - - - - - + Here is your one-time password (OTP) + + + + + + + + Here is your one-time password (OTP) + + + + + + +
- -
-

- One Time Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please use the password {{otp-password}} as the new password for your next login. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your one-time password (OTP) +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Email OTP for Sign In - - - - - - - - - - - - - - - - - - - -
- -
-

- Email OTP -

-
-

- Hi, -

-

- Please use this One-Time Password {{OTPCode}} to sign-in to your application. -

-
-

- Thank you,
WSO2 Identity Server Team. -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Create Password for New Account - - - - - - - - - - - - - - - - - - - - - - - - - + Here is your email OTP for login + + + + + + + + Here is your email OTP for login + + + + + + +
- -
-

- Password Change for New Account -

-
-

- Hi {{user-name}}, -

-

- Please create your password for the newly created account {{user-name}}.
- Please click the button below to create the password. -

-
- - - - -
- Create Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&type=invite - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your email OTP for login +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- - WSO2 - Resend Create Password for New Account - - - - - - - - - - - - - - - - - - - - - - - - - + + Here is your new account in the organization {{organization-name}} + + + + + + + + Here is your new account in the organization {{organization-name}} + + + + + + +
- -
-

- Resend Password Change for New Account -

-
-

- Hi {{user-name}}, -

-

- Please create your password for the newly created account {{user-name}}.
- Please click the button below to create the password. -

-
- - - - -
- Create Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&type=invite - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your new account in the organization {{organization-name}} +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. + If you encounter any issues, you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- - WSO2 - Admin Forced Password Reset - - - - - - - - - - - - - - - - - - - - - - - - - + + Here is your new account in the organization {{organization-name}} + + + + + + + + Here is your new account in the organization {{organization-name}} + + + + + + +
- -
-

- Admin Forced Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please click the button below to reset your password for the account {{user-name}}. -

-
- - - - -
- Reset Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your new account in the organization {{organization-name}} +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- - WSO2 - Resend Admin Forced Password Reset - - - - - - - - - - - - - - - - - - - - - - - - - + + Password reset is required + + + + + + + + Password reset is required + + + + + + +
- -
-

- Resend Admin Forced Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please click the button below to reset your password for the account {{user-name}}. -

-
- - - - -
- Reset Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} - -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset is required +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. + If you encounter any issues, you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]> +
---
+
+ + Password reset is required + + + + + + + + Password reset is required + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset is required +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]>
---
- WSO2 - Admin Forced Password Reset - - - - - - - - - - - - - - - - - - - + Password reset is required + + + + + + + + Password reset is required + + + + + + +
- -
-

- Admin Forced Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- We received a request to reset the password for the {{user-name}} account that is associated with this email address.
- Please use below OTP as the password at next login and then reset your password.
- OTP : {{confirmation-code}} -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset is required +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Resend Admin Forced Password Reset - - - - - - - - - - - - - - - - - - - + Password reset is required + + + + + + + + Password reset is required + + + + + + +
- -
-

- Resend Admin Forced Password Reset -

-
-

- Hi {{user.claim.givenname}}, -

-

- We received a request to reset the password for the {{user-name}} account that is associated with this email address.
- Please use below OTP as the password at next login and then reset your password.
- OTP : {{confirmation-code}} -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset is required +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Your Account has been Unlocked - - - - - - - - - - - - - - - - - - - + Your account is unlocked + + + + + + + + Your account is unlocked + + + + + + +
- -
-

- Account Unlocked -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been unlocked by administrator.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is unlocked +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Your Account has been Unlocked - - - - - - - - - - - - - - - - - - - + Your account is unlocked + + + + + + + + Your account is unlocked + + + + + + +
- -
-

- Account Unlocked -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been unlocked automatically as the locked time exceeded.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is unlocked +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Your Account has been Locked - - - - - - - - - - - - - - - - - - - + Your account is locked + + + + + + + + Your account is locked + + + + + + +
- -
-

- Account Locked -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been locked. Please try again in {{lock-duration}} minutes.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is locked +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Your Account has been Locked - - - - - - - - - - - - - - - - - - - -
- -
-

- Account Locked -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been locked by the administrator.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Your Account has been Enabled - - - - - - - - - - - - - - - - - - - + Your account is locked + + + + + + + + Your account is locked + + + + + + +
- -
-

- Account Enabled -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been enabled.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is locked +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]> +
---
+
+ + Your account is enabled + + + + + + + + Your account is enabled + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is enabled +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]>
---
- WSO2 - Your Account has been Disabled - - - - - - - - - - - - - - - - - - - + Your account is disabled + + + + + + + + Your account is disabled + + + + + + +
- -
-

- Account Disabled -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that the account registered with the user name {{user-name}} has been disabled.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is disabled +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Password Reset Successful - - - - - - - - - - - - - - - - - - - + Password reset successful + + + + + + + + Password reset successful + + + + + + +
- -
-

- Password Reset Successful -

-
-

- Hi {{user-name}}, -

-

- Please note that your password has been successfully reset for the account {{user-name}}.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset successful +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
@@ -1401,241 +10046,12 @@ Hi {{user-name}},

- Please note that your account activation is successfully completed. -

- - - - -

- Thanks,
WSO2 Identity Server Team -

- - - - -

- ©2020 - WSO2 -
- 787 Castro Street, Mountain View, CA 94041. -

- - - - - - ]]> -
---
-
- - WSO2 - Password Reset Initiated - - - - - - - - - - - - - - - - - - - -
- -
-

- Password Reset Initiated -

-
-

- Hi {{user.claim.givenname}}, -

-

- This is to notify that you have initiated to reset your password using security questions.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Account Inactive - - - - - - - - - - - - - - - - - - - -
- -
-

- Account Inactive -

-
-

- Hi {{user.claim.givenname}}, -

-

- It looks as though you haven't signed in to your account for quite a while. Please sign in to your account if you'd like to keep your account active.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Login from a New Device - - - - - - - - - - - - - - - - - - - -
- -
-

- Login from a New Device -

-
-

- Hi {{user.claim.givenname}}, -

-

- We detected a login to your account({{username}}) from a new device on {{login-time}}.
- If it is not you, contact the administrator immediately. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Email Confirmation - - - - - - - - - - - - - - - - - - -
- -
-

- Email Confirmation -

-
-

- Hi {{user.claim.givenname}}, -

-

- Your email address has been updated for the account with the following user name.
- User Name: {{user-name}}
- Please click the button below to verify your updated email address. -

-
- - - - -
- Confirm -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} + Please note that your account activation is successfully completed.

+

Thanks,
WSO2 Identity Server Team

@@ -1644,17 +10060,1830 @@

- ©{{current-year}} + ©2020 WSO2
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. + 787 Castro Street, Mountain View, CA 94041.

- - - ]]> + + + ]]> +
---
+
+ + Password reset initiated + + + + + + + + Password reset initiated + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset initiated +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Keep your account active + + + + + + + + Keep your account active + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Keep your account active +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Login from a new device + + + + + + + + Login from a new device + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Login from a new device +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Confirm your email + + + + + + + + Confirm your email + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your email +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]>
---
@@ -1761,351 +11990,456 @@ ]]>
---
- - WSO2 - Email OTP - - - - - - - - - - - - - - - - - - - -
- - - -
-

- WSO2 IS Email OTP -

-
-

- Hi {{user.claims.givenname}}, -

-

- Use this One-Time Password {{OTPCode}} to sign in to your application -

-
-

- Thanks,
WSO2 Identity Server Team. -

-
-

- © {{current-year}} - - WSO2 - -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- WSO2 Carbon - Time-Based One Time Password - - - - - - - - - - - - - - - - - - - -
- - - -
-

- Time-Based One Time Password -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please use the token {{token}} as the password for your login. -

-
-

- Thanks,
WSO2 Identity Server Team. -

-
-

- © {{current-year}} - - WSO2 - -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> - -
---
-
- - WSO2 - TenantAdminEmailconfirm - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-

- You're almost there -

-
-

- Hi {{user.claim.givenname}}, -

-

- It's amazing to get you on-board. Please click the button below to create a password for your account.
Username : {{url:user-name}} -

-
- - - - -
- Set Password -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{product-url-with-user-tenant}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{carbon.product-url}}/console -

-
-

- Thanks,
WSO2 Identity Server Team. -

-
-

- © {{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Lite User Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-

- Account Confirmation -

-
-

- Hi, -

-

- You have created an account with the following user name.
- User Name: {{user-name}}
- Please click the button below to confirm your account. -

-
- - - - -
- Confirm Account -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmliteuserregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} - -

-
-

- Thanks,
WSO2 Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Resend Lite User Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Here is your time-based one-time passcode (TOTP) + + + + + + + + Here is your time-based one-time passcode (TOTP) + + + + + + +
- -
-

- Resend Account Confirmation -

-
-

- Hi, -

-

- You have created an account with the following user name.
- User Name: {{user-name}}
- Please click the button below to confirm your account. -

-
- - - - -
- Confirm Account -
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- - {{carbon.product-url}}/accountrecoveryendpoint/confirmliteuserregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} - -

-
-

- Thanks,
WSO2 Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Here is your time-based one-time passcode (TOTP) +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]> +
---
- - WSO2 - Resend Email Confirmation + + WSO2 - TenantAdminEmailconfirm @@ -2118,7 +12452,7 @@

- Resend Email Confirmation + You're almost there

@@ -2128,9 +12462,7 @@ Hi {{user.claim.givenname}},

- Your email address has been updated for the account with the following user name.
- User Name: {{user-name}}
- Please click the button below to verify your updated email address. + It's amazing to get you on-board. Please click the button below to create a password for your account.
Username : {{url:user-name}}

@@ -2139,8 +12471,8 @@
- Confirm + Set Password
@@ -2151,15 +12483,15 @@

If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
- {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}} + href="{{product-url-with-user-tenant}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{carbon.product-url}}/console"> + {{product-url-with-user-tenant}}/accountrecoveryendpoint/confirmrecovery.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}&callback={{carbon.product-url}}/console

- +

- Thanks,
WSO2 Identity Server Team + Thanks,
WSO2 Identity Server Team.

@@ -2179,61 +12511,945 @@ ]]>
---
- - WSO2 - Self Sign Up Completed - - - - - - - - - - - - - + + Confirm your account + + - - - - - - + + + + + Confirm your account + + + + + + +
- -
-

- Self Sign Up Success -

-
-

- Hi {{user.claim.givenname}}, -

-

- Please note that your account has been successfully activated.
- Account activation time: {{selfsignup-confirm-time}} -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- © {{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
+ + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your account +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Confirm your account + + + + + + + + Confirm your account + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your account +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- - WSO2 - Self Sign Up Completed + + WSO2 - Resend Email Confirmation @@ -2246,7 +13462,7 @@

- Self Sign Up Success + Resend Email Confirmation

@@ -2256,12 +13472,34 @@ Hi {{user.claim.givenname}},

- Please note that your account has been successfully activated.
- Account activation time: {{selfsignup-confirm-time}} + Your email address has been updated for the account with the following user name.
+ User Name: {{user-name}}
+ Please click the button below to verify your updated email address. +

+ + + + + + + + +
+ Confirm +
+ + + + +

+ If clicking the button doesn't seem to work, you can copy and paste the following link into your browser.
+ + {{carbon.product-url}}/accountrecoveryendpoint/confirmregistration.do?confirmation={{confirmation-code}}&userstoredomain={{userstore-domain}}&username={{url:user-name}}&tenantdomain={{tenant-domain}}

-

@@ -2285,100 +13523,1730 @@ ]]>

---
- + + Your account is ready + + + + + + + Your account is ready + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is ready +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + ]]> + +
---
+
+ + Your account is ready + + + + + + + Your account is ready + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Your account is ready +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + ]]> + +
---
+
+ Sign in to {{application-name}} - - - - - - - - - - - - - - - - -
- -
-

- Sign in to {{application-name}} -

-
-

- Hi {{user-name}}, -

-

- Please click the button to sign in to {{application-name}}. -

-
- + + + + + + + Sign in to {{application-name}} + + + + + + +
+ + + - - - - - - - - - - - - - -
+ + + - -
- Sign In + + + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Sign in to {{application-name}} +

+
+ + + + + + + +
-
-

- If clicking the button doesn't seem to work, you can copy and paste the following link into - your browser.
-

- - {{carbon.product-url}}/commonauth?mlt={{magicToken}} - -
-

- Please note that the link expires in {{expiry-time}} and you can only use it once. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©{{current-year}} - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
-
- ]]> + + + + + + + + + +
+

+ You're receiving this email because you have registered + in Asgardeo. If this wasn't you, or you believe this + email was sent to you in error, please let us know at + {{organization.support.mail}}. +

+

+ This mail was sent by WSO2 LLC. 3080 Olcott St., Suite + C220, Santa Clara, CA 95054, USA +

+
+ + + + + + + + + + + + ]]> +
---
From 3b13a4ef9236a41d157224450b571899c5fa7ec3 Mon Sep 17 00:00:00 2001 From: Maduranga Siriwardena Date: Mon, 16 Oct 2023 14:34:19 +0530 Subject: [PATCH 2/2] Update other email templates --- .../resources/email-admin-config.xml | 2716 ++++++++++++++--- 1 file changed, 2331 insertions(+), 385 deletions(-) diff --git a/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml b/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml index 1273eb78..99ebc86c 100644 --- a/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml +++ b/features/org.wso2.carbon.email.mgt.server.feature/resources/email-admin-config.xml @@ -10023,58 +10023,2260 @@
---
- WSO2 - Account Activation Successful - - - - - - - - - - - - - - - - - - - + Account Activation Successful + + + + + + + + Password reset successful + + + + + + +
- -
-

- Account Activation Successful -

-
-

- Hi {{user-name}}, -

-

- Please note that your account activation is successfully completed. -

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- ©2020 - WSO2 -
- 787 Castro Street, Mountain View, CA 94041. -

-
+ + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Account Activation Successful +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Password reset initiated + + + + + + + + Password reset initiated + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Password reset initiated +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Keep your account active + + + + + + + + Keep your account active + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Keep your account active +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Login from a new device + + + + + + + + Login from a new device + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Login from a new device +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
+ + + + ]]> +
---
+
+ + Confirm your email + + + + + + + + Confirm your email + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{organization.logo.altText}} +
+

+ Confirm your email +

+
+ + + + + + + + +
+
+ + + + + + + +
+

+ You + received this email because you have an account in the + organization {{organization-name}}. If you encounter any issues, + you may contact us at {{organization.support.mail}}. +

+

+ This + mail was sent by WSO2 LLC. 3080 Olcott St., Suite C220, + Santa Clara, CA 95054, USA +

+
+
+ +
- - - ]]> + + + + ]]>
---
- - Password reset initiated + + Request received to update email @@ -10083,7 +12285,7 @@ - Password reset initiated + Confirm your email - Keep your account active + Confirm your email - Login from a new device + Here is your time-based one-time passcode (TOTP) - Here is your time-based one-time passcode (TOTP) + Confirm your account - Confirm your account + Confirm your email