Gmail
GMAIL_REPLY_TO_THREAD
Sends a reply within a specific gmail thread using the original thread's subject, requiring a valid `thread id` and correctly formatted email addresses. supports attachments via the `attachment` parameter with valid `s3key`, `mimetype`, and `name`.
Remote gmail
Other tools also called GMAIL_REPLY_TO_THREAD?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"cc": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Cc",
"default": [],
"examples": [
[
"[email protected]",
"[email protected]"
]
],
"description": "CC recipients' email addresses."
},
"bcc": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Bcc",
"default": [],
"examples": [
[
"[email protected]"
]
],
"description": "BCC recipients' email addresses (hidden from other recipients)."
},
"is_html": {
"type": "boolean",
"title": "Is Html",
"default": false,
"examples": [
"True",
"False"
],
"description": "Indicates if `message_body` is HTML; if True, body must be valid HTML, if False, body should not contain HTML tags."
},
"user_id": {
"type": "string",
"title": "User Id",
"default": "me",
"examples": [
"me",
"[email protected]"
],
"description": "Identifier for the user sending the reply; 'me' refers to the authenticated user."
},
"thread_id": {
"type": "string",
"title": "Thread Id",
"examples": [
"x53r3vdevff"
],
"description": "Identifier of the Gmail thread for the reply."
},
"attachment": {
"type": "object",
"title": "FileUploadable",
"default": null,
"nullable": true,
"required": [
"name",
"mimetype",
"s3key"
],
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"s3key": {
"type": "string",
"title": "S3Key"
},
"mimetype": {
"type": "string",
"title": "Mimetype"
}
},
"description": "File to attach to the reply. Just Provide file path here",
"file_uploadable": true,
"additionalProperties": false
},
"message_body": {
"type": "string",
"title": "Message Body",
"examples": [
"Dear Sir, Nice talking to you. Yours respectfully, John"
],
"description": "Content of the reply message, either plain text or HTML."
},
"recipient_email": {
"type": "string",
"title": "Recipient Email",
"examples": [
"[email protected]"
],
"description": "Primary recipient's email address."
},
"extra_recipients": {
"type": "array",
"items": {
"type": "string",
"properties": {}
},
"title": "Extra Recipients",
"default": [],
"examples": [
[
"[email protected]",
"[email protected]"
]
],
"description": "Additional 'To' recipients' email addresses."
}
}
}