Email API for Developers

Build beautiful emails and send them at scale. Mailcraft provides a simple, powerful API for transactional emails.

Everything you need to send emails

Fast Delivery

Emails are delivered in milliseconds with our global infrastructure powered by AWS SES.

Simple API

A clean REST API that's easy to integrate. Send emails with just a few lines of code.

Secure

Domain verification, DKIM signing, and secure API keys keep your emails safe.

Send emails in seconds

Get started with our simple API. Just make a POST request and your email is on its way.

curl -X POST https://api.mailcraft.dev/emails \
  -H "Authorization: Bearer mc_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "hello@yourdomain.com",
    "to": "user@example.com",
    "subject": "Hello World",
    "html": "<p>Welcome to Mailcraft!</p>"
  }'