Skip to content
Documentation

Everything, stated precisely.

Start with the quickstart — it ends by having you read a real trace, which is the only part of this product that needs explaining.

# Send a transactional email
curl -X POST https://app.getoutsend.com/api/v1/emails \
  -H "Authorization: Bearer $OUTSEND_API_KEY" \
  -H "Idempotency-Key: order-8421" \
  -d '{
    "from": "Acme <hello@mail.acme.com>",
    "to": ["maya@example.com"],
    "reply_to": "support@acme.com",
    "subject": "Your order is on its way",
    "html": "<p>Hi Maya, it shipped!</p>"
  }'

Something here wrong or missing?

The docs live in the repo. Corrections are welcome and we publish them.

Edit on GitHub