mcp_email_send
Send emails through SMTP protocol by providing server credentials, recipient information, subject, and message content.
Instructions
发送邮件
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | SMTP服务器主机名 | |
| port | Yes | SMTP服务器端口号 | |
| subject | Yes | 邮件主题 | |
| to | Yes | 收件人邮箱地址 | |
| body | Yes | 邮件正文 | |
| from | Yes | 发件人邮箱地址 | |
| fromPassword | Yes | 发件人邮箱密码 |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "邮件正文",
"minLength": 1,
"type": "string"
},
"from": {
"description": "发件人邮箱地址",
"format": "email",
"type": "string"
},
"fromPassword": {
"description": "发件人邮箱密码",
"minLength": 1,
"type": "string"
},
"host": {
"description": "SMTP服务器主机名",
"type": "string"
},
"port": {
"description": "SMTP服务器端口号",
"exclusiveMinimum": 0,
"type": "integer"
},
"subject": {
"description": "邮件主题",
"type": "string"
},
"to": {
"description": "收件人邮箱地址",
"format": "email",
"type": "string"
}
},
"required": [
"host",
"port",
"subject",
"to",
"body",
"from",
"fromPassword"
],
"type": "object"
}