send_email
Send emails via Hiworks Mail system with support for text, HTML, attachments, CC, and BCC. Streamline email communication directly through your MCP server.
Instructions
하이웍스 이메일을 전송합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| attachments | No | ||
| bcc | No | ||
| cc | No | ||
| html | No | ||
| password | No | ||
| subject | Yes | ||
| text | No | ||
| to | Yes | ||
| username | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attachments": {
"items": {
"additionalProperties": false,
"properties": {
"content": {
"anyOf": [
{
"type": "string"
}
]
},
"filename": {
"type": "string"
}
},
"required": [
"filename",
"content"
],
"type": "object"
},
"type": "array"
},
"bcc": {
"items": {
"type": "string"
},
"type": "array"
},
"cc": {
"items": {
"type": "string"
},
"type": "array"
},
"html": {
"type": "string"
},
"password": {
"default": "",
"type": "string"
},
"subject": {
"type": "string"
},
"text": {
"type": "string"
},
"to": {
"type": "string"
},
"username": {
"default": "",
"type": "string"
}
},
"required": [
"to",
"subject"
],
"type": "object"
}