Thank you for preparing this page! Could you also add an information about subject templating, please? For example (sorry for no Klingon): ```toml [auth.email.template.confirmation] subject = "{{if eq .Data.language \"pl\"}}Potwierdź swój e-mail{{else}}Confirm your email{{end}}" content_path = "./supabase/templates/confirmation.html" ``` Also, two nitpicks: 1. Why is the email used in the example so weird? `email@some_[email.com](http://email.com/)` Could it be simplified? 2. Suggesting that `age` should be persisted in the metadata is suboptimal. Nobody wants to run a cronjob every user's birthday to increment the age 😉 Maybe just put the `language` here instead?
Yes, it does. Example from my `config.toml`: ```toml [auth.email.template.confirmation] subject = "{{if eq .Data.language \"pl\"}}Potwierdź swój e-mail{{else}}Confirm your email{{end}}" content_path = "./supabase/templates/confirmation.html" ```
Thank you!