Quick Start
Get up and running with GetMailer in 3 simple steps.
1
Add and verify your domain
In your dashboard, add your sending domain and configure the DNS records we provide (SPF, DKIM, DMARC).
Tip: DNS changes can take up to 48 hours to propagate, but usually complete within minutes.
Learn more about domain setup 2
Create an API key
Go to API Keys and create a new key. Each API key must be linked to at least one verified domain.
Security: API keys are shown only once when created. Store them securely and never expose them in client-side code.
Learn more about API keys 3
Send your first email
Use our REST API to send your first email:
curl -X POST https://getmailer.co/api/emails \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "you@yourdomain.com",
"to": "recipient@example.com",
"subject": "Hello from GetMailer!",
"html": "<h1>Welcome!</h1><p>Your first email.</p>"
}'Success Response
{
"id": "clx1abc123def456",
"from": "you@yourdomain.com",
"to": ["recipient@example.com"],
"subject": "Hello from GetMailer!",
"status": "sent"
}