Node.js

Official Node.js SDK — npm i resent.one

Install the Resent client:

$npm install resent.one
1import { Resent } from "resent.one";
2
3const resent = new Resent(process.env.RESENT_API_KEY);
4
5await resent.emails.send({
6 from: "Acme <noreply@yourdomain.com>",
7 to: "you@example.com",
8 subject: "Hello World",
9 html: "<strong>It works!</strong>",
10});

Framework guides

Use Resent in your stack:

Next.js · Remix · Nuxt · Astro · SvelteKit · React · Vue · Express · Fastify · Hono · Koa · NestJS · RedwoodJS · Bun · Cloudflare Workers · Vercel · AWS Lambda · Deno · Electron · Node.js

All framework guides →

Package: npmjs.com/package/resent.one · Source: github.com/resentmail/resent-node