How to customize supabase email?

Viewed 160

My application leverages supabase's magic link for user authentication.

It works great but the email looks pretty basic. That's what it looks like:

enter image description here

Is there a way to edit this email template?

I'd like to change the language and to add some customized content like my app's logo.

1 Answers

Yes, you can customize any of these emails with the link below (for Supabase hosted):

https://app.supabase.com/project/_/auth/templates

enter image description here

You can customize these emails like you would for any email client using HTML tags, pictures, etc.

You can use pictures in base64 or even link them to your website(some people use linked pictures to track if the email was open or not).

Related