Skip to content

Duta Docs

Transactional email for Malaysian developers. Simple API, MYR pricing, SES-powered delivery.

Quickstart

Send your first email in five minutes. Start here.

Official SDKs

Typed clients for TypeScript, Python, PHP, and .NET. Browse the SDKs.

API reference

Every endpoint with curl and SDK examples. Send an email.

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: "Hello from Duta",
html: "<p>It works!</p>",
});