replyToMessage
Enable AI agents to reply to messages in specified inboxes using text or HTML, optionally including quoted replies, with automated inbox management via AgentMail.
Instructions
Reply to a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
html | No | ||
inbox_id | Yes | ||
include_quoted_reply | No | ||
message_id | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"html": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Html"
},
"inbox_id": {
"title": "Inbox Id",
"type": "string"
},
"include_quoted_reply": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Include Quoted Reply"
},
"message_id": {
"title": "Message Id",
"type": "string"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"inbox_id",
"message_id",
"text"
],
"title": "replyToMessageArguments",
"type": "object"
}