create-draft
Generate a draft email with specified recipients, subject, body, and importance using the Outlook MCP Server. Supports CC, BCC, and shared mailbox integration.
Instructions
Creates a new draft email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bcc | No | Comma-separated list of BCC recipient email addresses | |
body | Yes | Email body content (can be plain text or HTML) | |
cc | No | Comma-separated list of CC recipient email addresses | |
importance | No | Email importance (normal, high, low) | |
sharedMailbox | No | Email address of shared mailbox to create draft from (e.g., 'shared@company.com') | |
subject | Yes | Email subject | |
to | Yes | Comma-separated list of recipient email addresses |
Input Schema (JSON Schema)
{
"properties": {
"bcc": {
"description": "Comma-separated list of BCC recipient email addresses",
"type": "string"
},
"body": {
"description": "Email body content (can be plain text or HTML)",
"type": "string"
},
"cc": {
"description": "Comma-separated list of CC recipient email addresses",
"type": "string"
},
"importance": {
"description": "Email importance (normal, high, low)",
"enum": [
"normal",
"high",
"low"
],
"type": "string"
},
"sharedMailbox": {
"description": "Email address of shared mailbox to create draft from (e.g., 'shared@company.com')",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
},
"to": {
"description": "Comma-separated list of recipient email addresses",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}