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..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 @@ -24,2361 +24,17175 @@ - 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 - - - - - - - - - - - - - - - - - - - + Here is your email OTP for login + + + + + + + + Here is your email OTP for login + + + + + + +
- -
-

- 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 - 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}} + + + + + + +
- -
-

- 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 - 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 - - - - - - - - - - - - - - - - - - - - - - - - - + Password reset is required + + + + + + + + Password reset is required + + + + + + +
- -
-

- 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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- 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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- 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 - - - - - - - - - - - - - - - - - - - + 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 by the administrator.
-

-
-

- 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 Enabled - - - - - - - - - - - - - - - - - - - + Your account is enabled + + + + + + + + Your account is enabled + + + + + + +
- -
-

- 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 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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- 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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Password Reset Initiated - - - - - - - - - - - - - - - - - - - + Password reset initiated + + + + + + + + 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Account Inactive - - - - - - - - - - - - - - - - - - - + Keep your account active + + + + + + + + Keep your account active + + + + + + +
- -
-

- 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 +

+
+
+ +
- - - ]]> + + + + ]]>
---
- WSO2 - Login from a New Device - - - - - - - - - - - - - - - - - - - + Login from a new device + + + + + + + + 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 +

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

- 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}} -

-
-

- 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 - Request received to update email - - - - - - - - - - - - - - - - - - - + Request received to update email + + + + + + + + Confirm your email + + + + + + +
- -
-

- Request received to update email -

-
-

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

-

- We have received a request to change the email address for the account with the username, {{user-name}} to {{new-email-address}}.
-
Please contact the system administrator if this is not intentional.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- © 2018 - 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 - Request received to update email - - - - - - - - - - - - - - - - - - - -
- -
-

- Request received to update email -

-
-

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

-

- We have received a request to change the email address for the account with the username, {{user-name}} to {{verification-pending-email}}.
-
A confirmation email has been sent to the new email address specified.
-

-
-

- Thanks,
WSO2 Identity Server Team -

-
-

- © 2018 - WSO2 -
- 3080 Olcott St., Suite C220, Santa Clara, CA 95054. -

-
- - - ]]> -
---
-
- - WSO2 - Email OTP - - - - - - - - - - - - - - - - - - - + Request received to update email + + + + + + + + Confirm your email + + + + + + +
- - - -
-

- 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 Carbon - Time-Based One Time Password - - - - - - - - - - - - - - - - - - - + Here is your time-based one-time passcode (TOTP) + + + + + + + + Here is your time-based one-time passcode (TOTP) + + + + + + +
- - - -
-

- 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. -

-
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + +
+ {{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 - TenantAdminEmailconfirm - - - - - - - - - - - - - - - - - - - - - - - - - + Tenant admin email confirm + + + + + + + + Confirm your email + + + + + + +
- -
-

- 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. -

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

+ It's amazing to get you on-board. +

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

+ 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 - Lite User Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your account + + + + + + + + Confirm your account + + + + + + +
- -
-

- 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}} +
+

+ 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 Lite User Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your account + + + + + + + + Confirm your account + + + + + + +
- -
-

- 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}} +
+

+ 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 Email Confirmation - - - - - - - - - - - - - - - - - - - - - - - - - + Confirm your email + + + + + + + + Confirm your email + + + + + + +
- -
-

- Resend 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}} -

-
-

- 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 - Self Sign Up Completed - - - - - - - - - - - - - - - - - - - - + + Your account is ready + + + + + + + Your account is ready + + + + + + +
- -
-

- 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}} +
+

+ 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 +

+
+
+ +
- - - ]]> + + + ]]> +
---
- WSO2 - Self Sign Up Completed - - - - - - - - - - - - - - - - - - - - + Your account is ready + + + + + + + Your account is ready + + + + + + +
- -
-

- 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}} +
+

+ 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 -
-
-

- 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. -

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

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

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

+ 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 +

+
+
+ +
+ + + ]]> +