Vue

Use Resent from a Vue/Vite server endpoint or API layer.

Use Resent from a Vue/Vite server endpoint or API layer.

Install

npm i resent.one

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

Send an email

// server/api/send.ts
import { Resent } from "resent.one";
export async function sendWelcome(to: string) {
const resent = new Resent(process.env.RESENT_API_KEY);
return resent.emails.send({
from: "Acme <noreply@yourdomain.com>",
to,
subject: "Hello from Vue",
html: "<strong>It works!</strong>",
});
}

Next steps