read_email
Retrieve and display the complete content of a Gmail message using its unique message ID for reading and analysis.
Instructions
Read the full content of an email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| messageId | Yes | Email message ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"messageId": {
"description": "Email message ID",
"type": "string"
}
},
"required": [
"messageId"
],
"type": "object"
}