API

Manage your API keys and send transactional email

API Keys

No API keys yet. Create one to get started.

Send an email

POST to https://mailyond.com/api/external/emails with your key as a Bearer token.

Already using a Resend SDK? Point it at Mailyond by setting the base URL to https://mailyond.com/api/external and your myond_… key as the API key — no rewrite needed.

curl -X POST 'https://mailyond.com/api/external/emails' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "from": "support@yourdomain.com",
    "to": "user@example.com",
    "subject": "Hello",
    "html": "<h1>Hi</h1>"
  }'