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-sendercURL 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"}'