Send and monitor emails from Supabase Auth using a custom SMTP server.
One of the coolest things about Supabase is that it has a built-in authentication system that allows you to send emails to your users.
These emails typically include:
As you get ready to move to production, you might want to consider sending emails from a custom SMTP service. Here's why.
All of the Supabase Auth emails are sent from noreply@mail.app.supabase.io
.
Although this is good enough to get started, you probably want these emails to be sent from your own domain for brand recognition.
Apart from that, you can only send up to 4 emails per hour. That's a recent change caused by an influx of spam messages.
"The default email system we provide is only for testing purposes - it is not intended for production use. This means that the deliverability will not be great, because everyone is using it for testing and is a major reason we don't recommend using it for production."
Beyond rate limits, a managed SMTP server might also help with:
Supporting existing tools is one of Supabase's product principles, so they have made it easy to configure a custom SMTP server, or any other tool you need.
On top of that, we've built an integration that allows you to connect your Supabase project to Resend.
All you need to do is navigate to the Integrations page and follow the steps.
Once you're done, you'll be able to send emails from your own domain.
This will give you full control and visibility over your email delivery.
No more "Hey, I didn't get your email" from your users. Now you can see exactly what's happening with your emails - if they were sent, delivered, bounced, or marked as spam.
Here's a video showing the integration end-to-end:
If you prefer to configure your SMTP server manually, you can do that as well.
Navigate to your Supabase project, click on Project Settings, then navigate to Auth. Over there you'll find the SMTP Settings section.
Once you toggle the Enable Custom SMTP option, you'll be able to configure your SMTP server. You can change the host, port number, username, password, sender email, and sender name.
You can copy-and-paste all of these values from the Resend SMTP page.
Check the documentation to learn more about integrating SMTP with Supabase.