Introduction
Sendflare is a secure and reliable email delivery service.
Overview
Sendflare provides clear documentation for developers. Developers can easily integrate Sendflare into their projects.
Quickstart
1. Create an account
https://sendflare.io/auth/login
2. Verify your email and domain
https://sendflare.io/dashboard/verify
3. Create an API key
https://sendflare.io/dashboard/apikey
4. Use the API
curl -X POST https://api.sendflare.io/v1/send \
-H "Content-Type: application/json; charset=utf-8" \
-H "Authorization: Bearer <token>" \
-d '{
"from": "from@example.com",
"to": "to@example.com",
"subject": "test send",
"body": "test content"
}'