# Send Monthly Intake Report

> Perform Send Monthly Intake Report through GenHealth.

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

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

- Handler: `send_monthly_intake_report_email`

## Inputs

- `report` — Report (json, required)
  Required JSON value.
- `preconditions_ok` — Preconditions Ok (expression, required)
  Required literal value or workflow expression.
- `write_enabled` — Write Enabled (boolean)
  Optional true-or-false value.
  Default: `false`
- `to` — To (text)
  Optional text value.
  Default: `"daniella@genhealth.ai"`
- `cc` — Cc (text)
  Optional text value.
- `subject` — Subject (text)
  Optional text value.
  Default: `"SoundView Monthly Intake Report — {report_period}"`
- `generated_on` — Generated On (text)
  Optional text value.
- `generated_at` — Generated At (text)
  Optional text value.
- `from_email` — From Email (text)
  Optional text value.
- `gmail_group_email` — Gmail Group Email (text)
  Optional text value.

## Outputs

- `success` — Success
- `sent` — Sent
- `preview` — Preview
- `skip_reason` — Skip Reason
- `report_period` — Report Period
- `item_key` — Item Key
- `recipients` — Recipients
- `subject` — Subject
- `attachment_name` — Attachment Name
- `attachment_content_type` — Attachment Content Type
- `attachment_size_bytes` — Attachment Size Bytes
- `message_id` — Message Id
- `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": [
    "report",
    "preconditions_ok"
  ],
  "properties": {
    "cc": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to": {
      "type": "string",
      "default": "daniella@genhealth.ai",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "subject": {
      "type": "string",
      "default": "SoundView Monthly Intake Report — {report_period}",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "generated_at": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "generated_on": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "write_enabled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "preconditions_ok": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "gmail_group_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "sent": {},
    "error": {},
    "preview": {},
    "subject": {},
    "success": {},
    "item_key": {},
    "message_id": {},
    "recipients": {},
    "skip_reason": {},
    "report_period": {},
    "attachment_name": {},
    "attachment_size_bytes": {},
    "attachment_content_type": {}
  },
  "additionalProperties": true
}
```
