send_email
Send emails using a specified account on the MCP Email Server. Define recipients, subject, body, and optional CC/BCC fields for efficient email dispatch.
Instructions
Send an email using the specified account. Recipient should be a list of email addresses.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_name | Yes | The name of the email account to send from. | |
bcc | No | A list of BCC email addresses. | |
body | Yes | The body of the email. | |
cc | No | A list of CC email addresses. | |
recipients | Yes | A list of recipient email addresses. | |
subject | Yes | The subject of the email. |
Input Schema (JSON Schema)
{
"properties": {
"account_name": {
"description": "The name of the email account to send from.",
"title": "Account Name",
"type": "string"
},
"bcc": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "A list of BCC email addresses.",
"title": "Bcc"
},
"body": {
"description": "The body of the email.",
"title": "Body",
"type": "string"
},
"cc": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "A list of CC email addresses.",
"title": "Cc"
},
"recipients": {
"description": "A list of recipient email addresses.",
"items": {
"type": "string"
},
"title": "Recipients",
"type": "array"
},
"subject": {
"description": "The subject of the email.",
"title": "Subject",
"type": "string"
}
},
"required": [
"account_name",
"recipients",
"subject",
"body"
],
"title": "send_emailArguments",
"type": "object"
}