Send Email in Seconds

Three simple steps. One REST API call. Start sending transactional emails instantly.

1

Get Your API Key

Sign up for free and generate your API key from the dashboard.

Dashboard → API Keys
sk_live_abc123xyz456...

Time Saver: Traditional email APIs take 2-3 hours to set up. Sendmator takes 5 minutes.

2

Verify Domain & Add Email

2.1 Add Your Domain

Add your domain and configure DNS records (SPF, DKIM, DMARC).

Dashboard → Mail Settings → Identities
Add domain: yourdomain.com
Add DNS records provided → Wait for verification (usually 5-10 minutes)

2.2 Create Email Address

Once domain is verified, create an email address under that domain.

Create email: noreply@yourdomain.com

✅ Verified emails under verified domains are instantly ready to use

3

Send Your Email

Make a POST request to our REST API:

POST /v1/messages/send
curl -X POST https://api.sendmator.com/v1/messages/send \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "channel": ["email"],
    "recipient_type": "direct_email",
    "direct_email": "user@example.com",
    "direct_first_name": "John",
    "direct_last_name": "Doe",
    "from_email": "noreply@yourdomain.com",
    "from_name": "Your App",
    "subject": "Welcome to Our App!",
    "content": "

Hello!

Welcome aboard.

", "plain_text_content": "Hello! Welcome aboard." }'

That's it! Your email is sent in milliseconds.

Lightning Fast: Average API response time: 200ms

Success Response

{
  "success": true,
  "trigger_id": "trg_abc123xyz",
  "job_id": "job_xyz789",
  "message": "Email queued successfully"
}

Start Sending Emails in Seconds

Get $0.25 USD or ₹22 INR signup credit. No credit card required.

Get Started Free →