# Send Intake Report Email

> Perform Send Intake Report Email through GenHealth.

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

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

- Handler: `send_intake_report_email`

## Inputs

- `start_date` — Start Date (date)
  Optional date in YYYY-MM-DD format.
- `end_date` — End Date (date)
  Optional date in YYYY-MM-DD format.
- `lookback_days` — Lookback Days (number)
  Optional numeric value.
  Default: `7`
- `metric_profile` — Metric Profile (select, required)
  Required selected identifier or value.
  Default: `"standard_status"`
  Options: Status complete + no validation error ("standard_status"), No validation error + no failed activity ("review_status_success")
- `minutes_per_touchless_document` — Minutes Per Touchless Document (number)
  Optional numeric value.
  Default: `4`
- `include_review_savings` — Include Review Savings (boolean)
  Optional true-or-false value.
  Default: `false`
- `seconds_per_reviewed_document` — Seconds Per Reviewed Document (number)
  Optional numeric value.
  Default: `30`
- `hide_hours_saved` — Hide Hours Saved (boolean)
  Optional true-or-false value.
  Default: `false`
- `hide_passed_without_touch` — Hide Passed Without Touch (boolean)
  Optional true-or-false value.
  Default: `false`
- `to_emails` — To Emails (text, required)
  Required text value.
- `subject` — Subject (text)
  Optional text value.
- `report_title` — Report Title (text)
  Optional text value.
- `output_path` — Output Path (text)
  Optional text value.

## Outputs

- `status` — Status
- `start_date` — Start Date
- `end_date` — End Date
- `total_docs` — Total Docs
- `passed_without_touch` — Passed Without Touch
- `required_review` — Required Review
- `validation_error_docs` — Validation Error Docs
- `time_saved_hours` — Time Saved Hours
- `report_path` — Report Path
- `emailed_to` — Emailed To
- `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": [
    "metric_profile",
    "to_emails"
  ],
  "properties": {
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "end_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "to_emails": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "start_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "lookback_days": {
      "type": "number",
      "default": 7,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "metric_profile": {
      "enum": [
        "standard_status",
        "review_status_success"
      ],
      "type": "string",
      "default": "standard_status",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "hide_hours_saved": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "include_review_savings": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "hide_passed_without_touch": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "seconds_per_reviewed_document": {
      "type": "number",
      "default": 30,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "minutes_per_touchless_document": {
      "type": "number",
      "default": 4,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "end_date": {},
    "emailed_to": {},
    "start_date": {},
    "total_docs": {},
    "report_path": {},
    "required_review": {},
    "time_saved_hours": {},
    "passed_without_touch": {},
    "validation_error_docs": {}
  },
  "additionalProperties": true
}
```
