Back to Tools

Email Sender

Communication

Send transactional and marketing emails via multiple providers. Supports templates, attachments, and tracking.

Available Actions
sendtemplatebulk
Input Schema
{
  "type": "object",
  "required": [
    "to",
    "subject",
    "body"
  ],
  "properties": {
    "to": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "html": {
      "type": "boolean"
    },
    "subject": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "messageId": {
      "type": "string"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/email-sender

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/email-sender \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "send"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.