Reputation: 1
I'm playing around with Entra External Identities and creating a simple sign in / sign up flow.
I'd like tu customize the account verification code mail HTML template. Is there any way to do that ? I've tried looking in the External ID documentation and searching through Azure but could not find anything.
Here's the one from the Woodgrove sample app so people know about which mail i'm talking about :
Woodgrove grocery mail template html
Thanks for any answers.
Upvotes: 0
Views: 588
Reputation: 1
This is possible with the help Custom Authentication Extensions, there are different events are available to configure, where you can call your custom logic in the workflow Below are the events supported
OnAttributeCollectionStart
OnAttributeCollectionSubmit
Check this link from Microsoft here : https://learn.microsoft.com/en-us/entra/identity-platform/custom-extension-overview
Upvotes: 0
Reputation: 14724
You can configure a custom email provider by handling the OTP Send event using your own API.
For more information, see Configure a custom email provider for one time passcode send events (preview).
Upvotes: 0
Reputation: 1
According to Microsoft, this feature is unavailable but should be available "soon".
Upvotes: 0
Reputation: 46773
You may be able to do something with the branding (much like B2C), but you can change the tenant's name.
"The new tenant name also appears in the verification email sent to the user."
Upvotes: 0