Skip to main content
From zero to your first email in under 5 minutes. You’ll use the Test key: it sends real emails, flagged as test so they don’t pollute your production metrics.
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

  1. Log in to the dashboard.
  2. Select your project.
  3. In the side menu, open Integrations → API Keys.
  4. Copy the Test key (sk_test_*). If you later need production traffic, repeat with the Live key (sk_live_* or sk_proj_*).
Store it as an environment variable:
Don’t hardcode keys in client-side code. Use them only from the backend.
2

Send your first email

Use POST /v1/send-email with raw HTML:
3

Validate the response

A successful response returns 200 OK with:
Common errors: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.