get_email_content
Retrieve complete email thread content including full message bodies, attachments, and all conversation history using the Gmail thread ID for comprehensive email analysis and management.
Instructions
Get full content of an email thread by ID. Returns complete email body, attachments info, and all messages in the thread.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
threadId | Yes | Gmail thread ID (get this from search_gmail results) |
Input Schema (JSON Schema)
{
"properties": {
"threadId": {
"description": "Gmail thread ID (get this from search_gmail results)",
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
}