Developer Documentation

ArtaMail Documentation

A developer-first email platform for sending transactional and marketing emails at scale. Built for reliability, designed for simplicity.

Developer Experience

First-class TypeScript support, intuitive APIs

Reliability

Built on AWS SES with automatic failover

Tracking

Automatic open and click tracking

Test Mode

Develop without sending real emails

Quick Start

Get started in under 5 minutes. Install the SDK and send your first email:

Terminal
# Install the SDK
pnpm add @artamail/nextjs
app/api/send/route.ts
import { sendEmail } from '@artamail/nextjs/server';
await sendEmail({
template: 'welcome',
data: { name: 'John' }
});
View full Quick Start guide

API Reference

The ArtaMail API is organized around REST. All requests should be made over HTTPS with JSON payloads.

View API Reference