email_with_tracking
Send emails with instant tracking information to monitor engagement. Provides detailed stats for recipients, email subjects, and content, enhancing campaign analysis and follow-up.
Instructions
Send email and return tracking info immediately - universally useful combination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
htmlContent | No | Email HTML content | |
includeStats | No | Include detailed tracking stats | |
params | No | Template parameters | |
sender | No | Sender information | |
subject | No | Email subject | |
templateId | No | Template ID to use instead of content | |
to | Yes | Recipients list |
Input Schema (JSON Schema)
{
"properties": {
"htmlContent": {
"description": "Email HTML content",
"type": "string"
},
"includeStats": {
"default": true,
"description": "Include detailed tracking stats",
"type": "boolean"
},
"params": {
"description": "Template parameters",
"type": "object"
},
"sender": {
"description": "Sender information",
"properties": {
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"templateId": {
"description": "Template ID to use instead of content",
"type": "number"
},
"to": {
"description": "Recipients list",
"items": {
"properties": {
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"to"
],
"type": "object"
}