Skip to main content

Prerequisites

Send email

curl -X POST 'https://app.mailrify.com/api/v1/emails' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "from": "[email protected]",
    "to": "[email protected]",
    "subject": "Welcome to Mailrify",
    "html": "<p>It works! πŸ‘‹</p>"
  }'

More

  • Explore the API Reference to discover additional endpoints you can call using cURL for workflows beyond sending a single email.