DEV Community

Alex Spinov
Alex Spinov

Posted on

Resend Has a Free API That Makes Sending Emails From Code Actually Simple

Resend: developer-first email API. One call to send. React Email templates native.

import { Resend } from 'resend'
const resend = new Resend('re_key')
await resend.emails.send({
  from: 'hi@domain.com', to: 'user@example.com',
  subject: 'Welcome!', html: '<h1>Welcome!</h1>'
})
Enter fullscreen mode Exit fullscreen mode

Free: 3K emails/month. Clean DX, high deliverability.


Need to automate data collection or build custom scrapers? Check out my Apify actors for ready-made tools, or email spinov001@gmail.com for custom solutions.

Top comments (0)