Sending Emails
Sending emails from Edge Functions using the Resend API.
Prerequisites#
To get the most out of this guide, you’ll need to:
Make sure you have the latest version of the Supabase CLI installed.
1. Create Supabase function#
Create a new function locally:
Store the RESEND_API_KEY
in your .env
file.
2. Edit the handler function#
Paste the following code into the index.ts
file:
3. Deploy and send email#
Run function locally:
Test it: http://localhost:54321/functions/v1/resend
Deploy function to Supabase:
Open the endpoint URL to send an email:
4. Try it yourself#
Find the complete example on GitHub.