Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure B2C Email Validation Template Customization

I am using Azure B2C to handle user access to my App. I have an issue with the reset password workflow.

As part of the reset password process a verification email is sent to the registered email address. However the default template for this is generic and does not look professional or in any way linked to my App.

Is there anyway of customising this template? I have already customised the B2C html pages but cannot find a template for the email?

Thanks Ash

like image 829
Ashley Jackson Avatar asked May 05 '17 11:05

Ashley Jackson


2 Answers

Azure AD B2C supports basic customization of emails sent by Azure AD B2C through Azure AD's Company Branding feature. Customization of the template is not supported at this time, though you can vote for that ask in the Azure AD B2C Feedback forum: Fully customizable verification emails

An alternative would be for you to avoid using the Reset Password policy at all and implement your own reset password mechanism which:

  1. Generates its own codes
  2. Sends its own emails
  3. Has its own code redemption mechanism
  4. Uses the Graph API to reset the user's password
like image 58
Saca Avatar answered Nov 07 '22 19:11

Saca


Azure has update it. Now, it is available here. https://learn.microsoft.com/en-us/azure/active-directory-b2c/custom-email

like image 21
Rizvan Avatar answered Nov 07 '22 21:11

Rizvan