Node.js

Send email from plain Node.js with the official SDK.

Send email from plain Node.js with the official SDK.

Install

npm i resent.one

Set RESENT_API_KEY in your server environment. Keep the key off the client.

Send an email

import { Resent } from "resent.one";
const resent = new Resent(process.env.RESENT_API_KEY);
await resent.emails.send({
from: "Acme <noreply@yourdomain.com>",
to: "you@example.com",
subject: "Hello from Resent",
html: "<strong>It works!</strong>",
});

Next steps