Email Service API

Service Running
Admin Dashboard

API Information

Endpoint https://mail.exploit.bot//send.php
Method POST
Content-Type application/json
Authentication X-API-Key header required

Request Parameters

to (required) Recipient email address (string or array)
subject (required) Email subject line
body (required) Email body content
from_alias (optional) Sender alias identifier (auth, noreply, invoices, sales, admin, default)
from_name (optional) Custom sender name
reply_to (optional) Reply-to email address
cc (optional) CC recipients (string or array)
bcc (optional) BCC recipients (string or array)
is_html (optional) Send as HTML email (boolean, default: true)
attachments (optional) Array of attachment objects with 'path' and optional 'name'

Example Request

curl -X POST https://mail.exploit.bot//send.php \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key-here" \
  -d '{
    "to": "recipient@example.com",
    "subject": "Welcome to Our Service",
    "body": "

Welcome!

Thank you for registering.

", "from_alias": "noreply", "is_html": true }'

Use Cases

User Registration & Verification
Invoice & Billing Notifications
Support Ticket Updates
Password Reset Emails
Transactional Emails