From e86c58e7928f59687dd2196dfa971ec988365968 Mon Sep 17 00:00:00 2001 From: Andrew Barnes Date: Mon, 16 Mar 2026 14:31:33 -0400 Subject: [PATCH] docs: add quote_original to draft_gmail_message docstring --- gmail/gmail_tools.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gmail/gmail_tools.py b/gmail/gmail_tools.py index d6b4190..e5da840 100644 --- a/gmail/gmail_tools.py +++ b/gmail/gmail_tools.py @@ -1528,6 +1528,9 @@ async def draft_gmail_message( - 'mime_type' (optional): MIME type (defaults to 'application/octet-stream') include_signature (bool): Whether to append Gmail signature HTML from send-as settings. If unavailable (e.g., missing gmail.settings.basic scope), the draft is still created without signature. + quote_original (bool): Whether to include the original message as a quoted reply. + Requires thread_id to be provided. When enabled, fetches the original message + and appends it below the signature. Defaults to False. Returns: str: Confirmation message with the created draft's ID.