惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
博客园 - 司徒正美
博客园 - Franky
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
量子位
博客园 - 叶小钗
博客园_首页
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Resend RSS Feed

6 Tips for Accessible Emails Welcoming Manoel do Amaral, our new Brand Designer Welcoming Michael Vaz, our new Customer Success Engineer Six Steps to Improve Your Sender Reputation Welcoming Tatira Andrade, our new Executive Assistant Welcoming Pedro Ivo Hudson, our new Design Engineer Welcoming Diel Duarte, our new Open source Engineer Welcoming Areia Spinner, our new Recruiter Resend Forward: A Conference about Craft React Email 6.0 Custom Tracking Domains AI Email Editor Introducing Automations Welcoming Ahmed Tolba, our new SRE Engineer Welcoming Aneil Singh, our new Founding Account Executive Welcoming Lucas Motta, our new Software Engineer Welcoming Trey Knowles, our new Founding Account Executive Welcoming Anxhela Carciu, our new SRE Engineer Introducing DMARC Analyzer Welcoming Evan Thibodeau, our new Customer Success Engineer Welcoming Derich Pacheco, our new Software Engineer Welcoming Alec Ventura, our new Data Engineer Welcoming Felipe Freitag, our new Software Engineer Welcoming Mateusz Wos, our new Software Engineer Incident report for February 15, 2026 Email automation for OpenClaw How to Create a DevTools Agent Skill Introducing Email Skills Why You Should Embrace the Promotions Tab Slater Smith, our new Customer Success Engineer
How to configure Supabase to send emails from your domain
Zeno Rocha · 2023-08-10 · via Resend RSS Feed

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:

  • Confirm signup
  • Invite user
  • Magic link
  • Reset password
  • Change email address

As you get ready to move to production, you might want to consider sending emails from a custom SMTP service. Here's why.

The challenge of sending emails via Supabase

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.

Supabase Auth Email
Supabase Auth Email

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:

  • Deliverability and IP reputation management
  • Compliance and anti-spam practices
  • Analytics and webhooks
  • Scalability

Integrate to have full control and visibility

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.

Supabase integration
Supabase integration

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.

Supabase integration Email
Supabase integration Email

Here's a video showing the integration end-to-end:

Configure a custom SMTP server manually

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.

Supabase - SMTP Settings
Supabase - SMTP Settings

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.

Supabase - SMTP Configurations
Supabase - SMTP Configurations

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.