get-email-content
Retrieve full email content by ID to access complete message details, attachments, and conversation history for email management and reference.
Instructions
Get the full content of a specific email by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
email_id | Yes | The ID of the email to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"email_id": {
"description": "The ID of the email to retrieve",
"type": "string"
}
},
"required": [
"email_id"
],
"type": "object"
}