The “From” field of an email template says that it allows any of the common variables ( https://auth0.com/docs/auth0-email-services/customize-email-templates?&_ga=2.148440887.1469977355.1608061282-867484737.1608061282#common-variables ) which includes support_email
, but using it in the “From” field throws the error:
Error! The value {{application.name}} <{{ support_email }}> is not valid for the From field. Possible values: an email address ('support@yourapp.com') or a prefix and an email address between <> ('Your App <support@yourapp.com>')
I’ve tried various combinations of:
- {{ support_email }}
- {{ tenant.support_email }}
- Myapp <{{ support_email }}>
- Myapp <{{ tenant.support_email}}>
But none work.