# Reply To Gmail Message

> Perform Reply To Gmail Message through GMail.

Source: [https://genhealth.ai/docs/workflows/integrations/gmail/gmail_reply_to_message](https://genhealth.ai/docs/workflows/integrations/gmail/gmail_reply_to_message)

Integration: [GMail](https://genhealth.ai/docs/workflows/integrations/gmail.md)

- Handler: `gmail_reply_to_message`

## Inputs

- `message_id` — Message Id (expression, required)
  Required literal value or workflow expression.
- `subject` — Subject (text)
  Optional text value.
- `body` — Body (textarea)
  Optional text value.
- `html` — Html (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `trust_reply_to` — Trust Reply To (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `message_id` — Message Id
- `recipients` — Recipients
- `error` — Error

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "message_id": {},
    "recipients": {}
  },
  "additionalProperties": true
}
```
