We need to create custom emails but the template editor that is in the dashboard is not customizable enough for us, so we are following this guide https://auth0.com/docs/email/custom
We are in the process of making a personalized “verify your address” email using an external endpoint to generate/send the email (like in the example).
It suggests to use a rule and trigger an endpoint this way
json: { user: user, context: context, secretToken: configuration.MY_SECRET_TOKEN, },
but this way, even after dumping the payload, we noticed that we don’t have access to the landing url for the user to click to verify the address
How can we retrieve it?