Skip to main content

Prerequisites

Send email

wget --method=POST \
  --header='Authorization: Bearer YOUR_API_KEY' \
  --header='Content-Type: application/json' \
  --body-data='{
    "from": "[email protected]",
    "to": "[email protected]",
    "subject": "Welcome to Mailrify",
    "html": "<p>It works! 👋</p>"
  }' \
  'https://app.mailrify.com/api/v1/emails'

More

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