Hi,
In the project I’m working on recently, I created an email template in Auth0 for password reset, which has a footer area like this:
<p>
© 2021 CompanyName
</p>
I’m trying to make “2021” part dynamic based on the current timestamp so that I don’t have to go into Auth0 dashboard every year and hardcode the year (Likely I’ll forget to do it). Ideally I want to use a variable and make it like:
<p>
© {{current_year}} CompanyName
</p>
However, this doesn’t seem to be possible from what is provided in templates:
Is this actually achievable? If not, what would be the best way to make the year dynamic?