I am trying to customize the Password Reset email template’s successMessage to render an embedded html link however the html link is displayed as raw text, not as html link.
Please advise.
dict: {
successMessage: “Your password has been set successfully. Return to portal [HTML LINK]”,
This field only accepts a string and will print the value passed as a string (i.e. passing <a href="https://auth0.com">Auth0</a> will print the whole HTML tag as a string.
In order to get around this, you could use javascript to manipulate the DOM. See this thread: