Send transactional email in five lines of code. Built on AWS SES, instrumented end-to-end, with a dashboard you'll actually open.
One REST call, scheduled sends, templated payloads, idempotent retries, custom headers and tags — everything you need to wire emails into your backend without leaving your editor.
import { LayerSend } from "layersend"; const ls = new LayerSend(process.env.LAYERSEND_KEY); await ls.emails.send({ from: "team@acme.dev", to: "olivia@yahoo.com", subject: "Your receipt for order #4921", template_id: "tmpl_order_confirmation", variables: { first_name: "Olivia", total: "$84.20" }, tags: ["order", "shop:eu"], scheduled_at: "2026-05-19T09:00:00Z", idempotency_key: "ord_4921", }); // → { id: "msg_3d25742f-51b4-4342-a465-77407b34469a" }
A small surface area you can hold in your head. Every feature has a clean primitive on the API and a thoughtful UI in the dashboard — never one without the other.
One POST /v1/emails. From/to/cc/bcc/reply_to, html or text, headers, tags, idempotency keys, scheduled sends.
Add a domain, copy the DKIM, SPF, and DMARC records, and we verify it the moment DNS propagates.
Full access, send-only, or read-only. Per-workspace, per-environment. Revoke instantly with no propagation delay.
Reusable HTML templates with {{handlebars}} placeholders. Reference by id from any API call.
Every API request and every email event. Searchable by recipient, status, method, tag. Inspect request and response bodies inline.
Subscribe to delivered, opened, clicked, bounced, complained. Replay or filter per workspace.
Sender reputation is a system, not a feature. We instrument the entire send path so you can debug why a message hit the inbox — or didn't.
Six starter templates ship with every workspace. Edit them visually, version them in the dashboard, reference them by id in code.
No annual contracts on Free or Pro. Switch tiers from the dashboard. Volume above 1M emails / month routes through a dedicated infrastructure plan — talk to us.
Free for 3,000 emails a month. No credit card. Five-line integration.