If you don’t have an account yet, sign up at app.reallyquickemails.com. You need a verified domain to send; see the domains guide.
1
Get your Test API Key
- Log in to the dashboard.
- Select your project.
- In the side menu, open Integrations → API Keys.
- Copy the Test key (
sk_test_*). If you later need production traffic, repeat with the Live key (sk_live_*orsk_proj_*).
2
Send your first email
Use
POST /v1/send-email with raw HTML:- curl
- JavaScript
- Python
3
Validate the response
A successful response returns Common errors:
200 OK with:An unverified
sender_email does not produce a synchronous error: the request responds 200 and the send fails in the background. Check the status in Activity and verify your domain in Domains.4
Verify the send in the dashboard
In the dashboard’s Activity, you’ll see the send flagged with
is_test=true (because you used sk_test_*).When the email is opened, the email.open event arrives at your project’s webhook_url_dev if it’s configured. See Webhooks.Next steps
Ready for productionRepeat the send with
sk_live_* (or sk_proj_*) when you want to send to real customers. Configure webhook_url and inbound_webhook_url in your project.- Templates with variables — Handlebars,
{{variables}}, helpers. - Scheduling sends — future dates with time zones.
- Attachments — PDFs, .ics calendar events.
- Send batch — up to 10,000 recipients per request.
- Webhooks — receive
email.delivery,email.open,email.click,email.bounceevents.