# Send Report Email

> Perform Send Report Email through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/send_report_email](https://genhealth.ai/docs/workflows/integrations/gen-health/send_report_email)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `send_report_email`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `template` — Template (select)
  Optional selected identifier or value.
  Options: Intake Summary ("intake_summary"), External System Push Summary ("external_system_push_summary"), MedExpress Confirmation ("medexpress_confirmation")
- `report_results` — Report Results (expression)
  Optional literal value or workflow expression.
- `to` — To (text, required)
  Required text value.
- `cc` — Cc (text)
  Optional text value.
- `subject` — Subject (text)
  Optional text value.
- `from_email` — From Email (text)
  Optional text value.

## Outputs

- `success` — Success
- `message_id` — Message Id
- `recipients` — Recipients
- `patient_name` — Patient Name
- `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": [
    "document_id",
    "to"
  ],
  "properties": {
    "cc": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "template": {
      "enum": [
        "intake_summary",
        "external_system_push_summary",
        "medexpress_confirmation"
      ],
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "report_results": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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