send-email
Send customizable emails by specifying recipient, subject, and body directly through the MCP server for efficient communication within meme generation workflows.
Instructions
Send an email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | The body of the email | |
subject | Yes | The subject of the email | |
to | Yes | The email address of the recipient |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "The body of the email",
"type": "string"
},
"subject": {
"description": "The subject of the email",
"type": "string"
},
"to": {
"description": "The email address of the recipient",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}