As I’m migrating my code from using Supabase to Appwrite, I’ve encountered an issue with migrating the email templates. Supabase uses Go templates, and in one of my email templates i had a line that looked like this:
{{ if .Data.full_name }}Hi {{ .Data.full_name }} 👋,{{ else }}Hi There 👋,{{ end }}
However, I’m unsure how to replicate this in Appwrite, as the documentation does not specify which templating language Appwrite uses.