Reply To Gmail Message
Perform Reply To Gmail Message through GMail.
gmail_reply_to_messagewrite
Inputs
- Message Id
message_idexpressionrequiredRequired literal value or workflow expression.
- Subject
subjecttextOptional text value.
- Body
bodytextareaOptional text value.
- Html
htmlbooleanOptional true-or-false value.
Default:
"false" - Trust Reply To
trust_reply_tobooleanOptional true-or-false value.
Default:
true
Outputs
successSuccessmessage_idMessage IdrecipientsRecipientserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"message_id"
],
"properties": {
"body": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "textarea"
},
"html": {
"type": "boolean",
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"subject": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"message_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"trust_reply_to": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"message_id": {},
"recipients": {}
},
"additionalProperties": true
}