read-email
Retrieve the content of a specific email by its ID using the Outlook MCP Server. Supports reading from shared mailboxes for collaborative email management.
Instructions
Reads the content of a specific email
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| id | Yes | ID of the email to read | |
| sharedMailbox | No | Email address of shared mailbox to read from (e.g., 'shared@company.com') | 
Input Schema (JSON Schema)
{
  "properties": {
    "id": {
      "description": "ID of the email to read",
      "type": "string"
    },
    "sharedMailbox": {
      "description": "Email address of shared mailbox to read from (e.g., 'shared@company.com')",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}