gmail_reply
Reply to an email within its existing Gmail thread by providing the thread ID and message ID. Supports drafts, content types, CC, BCC, and attachments.
Instructions
Reply to an email within its existing thread. Use gmail_read to obtain the threadId, messageId (Message-ID header), and references before calling this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | CC recipients. Multiple addresses can be comma-separated. | |
| to | Yes | Recipient email address for the reply. | |
| bcc | No | BCC recipients. Multiple addresses can be comma-separated. | |
| body | Yes | Body content of the reply (plain text). | |
| Yes | The Gmail address to reply from. | ||
| isDraft | No | If true, creates a draft reply instead of sending. Useful for draft-only accounts (default: false). | |
| subject | Yes | Subject of the reply (usually 'Re: <original subject>'). | |
| threadId | Yes | The Gmail thread ID to reply within (from gmail_read Thread-ID). | |
| inReplyTo | Yes | The RFC 2822 Message-ID of the email being replied to (from gmail_read Message-ID). | |
| references | No | Space-separated list of Message-IDs from the References header of the original email (optional). | |
| attachments | No | Files to attach to the reply. | |
| contentType | No | Content format: 'text' (plain text, default), 'markdown' (converted to HTML), or 'html' (raw HTML). |