Invite only

Email infrastructure
that just works

Send transactional and marketing emails at scale. Built for developers, designed for reliability. No complexity, no surprises.

Everything you need to
deliver with confidence

From single transactional emails to massive marketing campaigns, ArtaMail handles it all with enterprise-grade reliability.

Transactional & Marketing

Send welcome emails, password resets, and marketing campaigns from a single platform. Automatic priority handling.

Developer-first API

Simple REST API with SDKs for Next.js, Nuxt, and vanilla JavaScript. Ship in minutes, not days.

Blazing fast queues

BullMQ-powered queue system handles millions of emails. Automatic retries, rate limiting, and failover.

Contact management

Import, segment, and manage your contacts. Built-in unsubscribe handling and list hygiene.

Enterprise security

AWS SES with dual-account failover. Encrypted at rest, SOC 2 compliant infrastructure.

Real-time analytics

Track opens, clicks, bounces, and complaints. Detailed per-email and campaign reporting.

Ship emails in
minutes, not days

Our SDKs make integration effortless. Three lines of code to send your first email. Full TypeScript support, automatic retries, and comprehensive error handling out of the box.

1
Install the SDK
pnpm add @artamail/nextjs
2
Add your API key
ARTAMAIL_API_KEY in your .env
3
Start sending
See the code example →
send-email.ts
import { sendEmail } from '@artamail/nextjs/server'
// Send a transactional email
const result = await sendEmail({
template: 'welcome',
data: { name: 'John' }
})
// That's it. Email queued and sent.
console.log('Sent:', result.id)