send-sandbox-email
Send test emails to a sandbox environment for safe email testing and validation without delivering to real recipients.
Instructions
Send email in sandbox mode to a test inbox
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bcc | No | Optional BCC recipients | |
| category | No | Optional email category for tracking | |
| cc | No | Optional CC recipients | |
| from | Yes | Email address of the sender | |
| html | No | Optional HTML version of the email body | |
| subject | Yes | Email subject line | |
| text | No | Email body text | |
| to | Yes | Email addresses (comma-separated or single) |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "Optional BCC recipients",
"items": {
"format": "email",
"type": "string"
},
"type": "array"
},
"category": {
"description": "Optional email category for tracking",
"type": "string"
},
"cc": {
"description": "Optional CC recipients",
"items": {
"format": "email",
"type": "string"
},
"type": "array"
},
"from": {
"description": "Email address of the sender",
"format": "email",
"type": "string"
},
"html": {
"description": "Optional HTML version of the email body",
"type": "string"
},
"subject": {
"description": "Email subject line",
"type": "string"
},
"text": {
"description": "Email body text",
"type": "string"
},
"to": {
"description": "Email addresses (comma-separated or single)",
"minLength": 1,
"type": "string"
}
},
"required": [
"from",
"to",
"subject"
],
"type": "object"
}