get_email_by_id
Retrieve a specific email by its unique ID from the Outlook MCP Server, enabling direct access to targeted messages for reading or processing.
Instructions
Get specific email by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Email ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Email ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}