get_email_content
Extract detailed content from a specific email using its unique identifier, enabling efficient management and analysis of email data within the Email MCP Server.
Instructions
获取指定邮件的详细内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | 邮件唯一标识符 |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "邮件唯一标识符",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}