Skip to documentation
GMail integration

Reply To Gmail Message

Perform Reply To Gmail Message through GMail.

View as Markdown
gmail_reply_to_message
write

Inputs

  • message_id
    expressionrequired
    Message Id

    Required literal value or workflow expression.

  • subject
    text
    Subject

    Optional text value.

  • body
    textarea
    Body

    Optional text value.

  • html
    boolean
    Html

    Optional true-or-false value.

    Default: "false"

  • trust_reply_to
    boolean
    Trust Reply To

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • message_idMessage Id
  • recipientsRecipients
  • errorError

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
}
View all GMail actions