Email delivery for developers
Send transactional emails with a simple API. No SMTP headaches. No deliverability nightmares.
curl -X POST https://api.email.cead.dev/v1/send \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "user@example.com",
"subject": "Welcome!",
"html": "<h1>Hello World</h1>"
}'