send-email
Send emails via the Email MCP server by specifying recipients, subject, and content. Supports plain text and HTML formats with JWT authentication for secure communication.
Instructions
发送邮件
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | 邮件主题 | |
| text | Yes | 邮件内容 | |
| to | Yes | 邮件收件人 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"subject": {
"description": "邮件主题",
"type": "string"
},
"text": {
"description": "邮件内容",
"type": "string"
},
"to": {
"description": "邮件收件人",
"type": "string"
}
},
"required": [
"to",
"subject",
"text"
],
"type": "object"
}