Mail API

Email sending API with automatic DKIM signing.

Endpoint

POST https://mail.mano.app/api/send

Headers

X-API-Key: your_api_key
Content-Type: application/json

Body

{
  "to": "[email protected]",
  "subject": "Hello",
  "html": "<p>Email content</p>",
  "from_name": "My App",
  "reply_to": "[email protected]"
}

Response

{
  "success": true,
  "message_id": "msg_abc123"
}

Admin Panel