The first challenge I faced was that the only thing offered to me for making changes was a Quill Editor (Which can’t really give me the look I am talking about). Luckily, the Classic Anvil Editor still allowed making changes to the HTML directly so I was able to achieve the look I want.
Now the Problem
In the example image, there is a “Reset Your Password” button which upon clicking redirects you to the reset link. But Anvil automatically adds <a> tag wherever I add {{reset_link}}. And I cannot make any changes to it,
It would be really helpful to have the ability to access values from the users table directly within email configurations. If we could expose the user_row data in a similar way to {{reset_link}}, as {{user}}, it would allow for more personalized emails. For example, we could use something like {{user['name']}} to include the user’s name in the email content. To take it one step further, it would be great to have the capability to use conditionals within the email template, like:
{{'New User' if user['name'] is None else user['name']}}
This would greatly enhance the customization and personalization options.