Admin
Customer Onboarding
Setup path
Add a sending domain
Create the SES tenant, configuration set, domain identity, DKIM, MAIL FROM, SPF, and DMARC checklist.
Verify sender email
Use a verified domain address or request SES verification for a single sender address.
Create an API key
Use this key with X-API-Key for POST /api/send/transactional.
Send a test
Queue a transactional test from the dashboard once SES verification is complete.
Transactional API
curl -X POST https://mail.eightmonmouth.com/api/send/transactional \
-H "Content-Type: application/json" \
-H "X-API-Key: femail_..." \
-d '{
"fromEmail": "support@example.com",
"to": "customer@example.com",
"subject": "Receipt",
"html": "<p>Thanks</p>",
"text": "Thanks"
}'