send-email
Send emails via MailPace MCP Server using JSON input for to, from, subject, and attachments. Simplify email delivery for transactional purposes with structured data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachments | No | ||
bcc | No | ||
cc | No | ||
from | Yes | ||
htmlbody | No | ||
inreplyto | No | ||
list_unsubscribe | No | ||
references | No | ||
replyto | No | ||
subject | No | ||
tags | No | ||
textbody | No | ||
to | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attachments": {
"items": {
"additionalProperties": false,
"properties": {
"cid": {
"type": "string"
},
"content": {
"type": "string"
},
"content_type": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content",
"content_type"
],
"type": "object"
},
"type": "array"
},
"bcc": {
"type": "string"
},
"cc": {
"type": "string"
},
"from": {
"format": "email",
"type": "string"
},
"htmlbody": {
"type": "string"
},
"inreplyto": {
"type": "string"
},
"list_unsubscribe": {
"type": "string"
},
"references": {
"type": "string"
},
"replyto": {
"type": "string"
},
"subject": {
"type": "string"
},
"tags": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"textbody": {
"type": "string"
},
"to": {
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}