Transactional email,
built for Malaysian devs.
Send transactional emails through a simple API. SES-powered delivery, MYR pricing, and a developer experience that just works.
import { Duta } from "@duta/sdk";
const duta = new Duta("duta_live_xxx");
await duta.emails.send({
from: "hello@yourdomain.com",
to: "user@example.com",
subject: "Welcome to Duta",
html: "<p>Thanks for signing up!</p>",
});