create-reply-draft
Generate a draft reply to an email by specifying the email ID, reply content, and optional settings to reply-all or use a shared mailbox. Simplify email responses with direct integration into Outlook MCP Server.
Instructions
Creates a draft reply to an existing email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Content of the reply message | |
emailId | Yes | ID of the email to reply to | |
replyAll | No | Whether to reply to all recipients (default: false) | |
sharedMailbox | No | Email address of shared mailbox to reply from (e.g., 'shared@company.com') |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Content of the reply message",
"type": "string"
},
"emailId": {
"description": "ID of the email to reply to",
"type": "string"
},
"replyAll": {
"description": "Whether to reply to all recipients (default: false)",
"type": "boolean"
},
"sharedMailbox": {
"description": "Email address of shared mailbox to reply from (e.g., 'shared@company.com')",
"type": "string"
}
},
"required": [
"emailId",
"body"
],
"type": "object"
}