# Send Intake Summary Email

> Perform Send Intake Summary Email through GenHealth - Notifications.

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

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

- Handler: `notifications_send_intake_summary_email`

## Inputs

- `job_id` — Job Id (expression, required)
  Required literal value or workflow expression.
- `intake_source_id` — Intake Source Id (text, required)
  Required text value.

## Outputs

- `success` — Success
- `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": [
    "job_id",
    "intake_source_id"
  ],
  "properties": {
    "job_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "intake_source_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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