Skip to main content
Customize your transactional emails. This guide covers finding and editing email templates in Supabase, updating subject lines and body content, and keeping placeholders like confirmation links working correctly.You need:
  • A Supabase account with an active project
  • Your Supabase account connected to Rocket
  • Basic HTML knowledge if you plan to customize the email body
The built-in Supabase email service is intended for development use only and has rate limits. For production apps, connect a custom SMTP provider.

Edit email templates in Supabase

1

Open the Email settings

  1. In your Supabase project, go to Authentication in the left sidebar.
  2. Under Configuration, choose Emails.
  3. Switch to the Templates tab.
Supabase Email Templates tab showing configuration options for confirmation and reset emails.Supabase Email Templates tab showing configuration options for confirmation and reset emails.
You should now see templates like Confirm Signup, Magic Link, and Reset Password.
2

Select a template to edit

Click the template you want to customize, such as Confirm signup. You can update the following:
  • Subject line: What appears in the user’s inbox.
  • Email body: The message content, written in HTML or plain text.
Keep placeholders like {{ .ConfirmationURL }}. If removed, the email will not work as expected.
3

Save your changes

Click Save at the bottom of the editor. Then test your update by triggering that email type in Rocket. For example, sign up to test the confirmation email. The email you receive should reflect your custom content, and all links should work correctly.

Troubleshooting

1. Email still shows old content

What you will see: You updated the template, but the email still shows the old message.
To fix this:
  • Make sure you clicked Save in Supabase.
  • Clear your email client’s cache (especially in webmail).
  • Trigger a new signup or password reset. Old links will not refresh.
What you will see: The email arrives, but the link is missing or unclickable.
To fix this:
  • Confirm you kept the placeholder variable like {{ .ConfirmationURL }} in the template.
  • Double-check the Site URL in Supabase. It must match your Rocket app’s live domain.

Branded emails that work

Your Rocket app now sends custom, branded emails through Supabase that look right and function reliably.