DEV Community

Alex Spinov
Alex Spinov

Posted on

Resend Has a Free Email API — Send Transactional Emails with React Components

A developer needed to send password reset emails. Setting up SMTP, dealing with deliverability, building HTML email templates that work in Outlook - three days of work for a basic feature.

Resend is a modern email API. Send transactional emails with a single API call. Build email templates with React. Free tier: 3,000 emails/month.

What Resend Offers for Free

  • 3,000 Emails/Month - Generous free tier
  • React Email - Build templates with React components
  • Simple API - One POST request to send email
  • Deliverability - DKIM, SPF, DMARC handled for you
  • Webhooks - Track opens, clicks, bounces
  • Multiple Domains - Add custom sending domains
  • SDK - Node.js, Python, Go, Ruby, PHP, Elixir

Quick Start

npm install resend
Enter fullscreen mode Exit fullscreen mode
import { Resend } from 'resend'
const resend = new Resend('re_123456')
await resend.emails.send({
  from: 'onboarding@yourdomain.com',
  to: 'user@example.com',
  subject: 'Welcome!',
  html: '<h1>Welcome aboard!</h1>'
})
Enter fullscreen mode Exit fullscreen mode

Website: resend.com - 3K emails/month free


Need to monitor and scrape data from multiple web services automatically? I build custom scraping solutions. Check out my web scraping toolkit or email me at spinov001@gmail.com for a tailored solution.

Top comments (0)