# Send Daily Intake Report

> Perform Send Daily Intake Report through Tomorrow Health.

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

Integration: [Tomorrow Health](https://genhealth.ai/docs/workflows/integrations/tomorrow-health.md)

- Handler: `tomorrow_health_send_daily_intake_report`

- Connection type: `tomorrow_health`

## Inputs

- `to` — To (text, required)
  Required text value.
- `cc` — Cc (text)
  Optional text value.
- `report_date` — Report Date (text)
  Optional text value.
- `timezone` — Timezone (text)
  Optional text value.
- `from_email` — From Email (text)
  Optional text value.
- `workflow_name` — Workflow Name (text, required)
  Required text value.
- `eligibility_workflow_name` — Eligibility Workflow Name (text)
  Optional text value.
- `additional_documents_workflow_name` — Additional Documents Workflow Name (text)
  Optional text value.
- `cmn_workflow_name` — Cmn Workflow Name (text)
  Optional text value.
- `outbound_cmn_workflow_name` — Outbound Cmn Workflow Name (text)
  Optional text value.
- `unassigned_cmn_faxes` — Unassigned Cmn Faxes (json)
  Optional JSON value.
- `subject_prefix` — Subject Prefix (text)
  Optional text value.
- `report_title` — Report Title (text)
  Optional text value.
- `client_name` — Client Name (text)
  Optional text value.
- `empty_message` — Empty Message (text)
  Optional text value.
- `supplier_id` — Supplier Id (text)
  Optional text value.
- `brightree_tenant` — Brightree Tenant (text)
  Optional text value.
- `brightree_patient_url_template` — Brightree Patient Url Template (text)
  Optional text value.

## Outputs

- `success` — Success
- `message_id` — Message Id
- `recipients` — Recipients
- `subject` — Subject
- `report_date` — Report Date
- `order_count` — Order Count
- `eligibility_count` — Eligibility Count
- `cmn_count` — Cmn Count
- `cmn_completed_count` — Cmn Completed Count
- `cmn_review_count` — Cmn Review Count
- `cmn_unassigned_count` — Cmn Unassigned Count
- `cmn_snapshot_available` — Cmn Snapshot Available
- `html` — Html
- `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": [
    "to",
    "workflow_name"
  ],
  "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"
    },
    "timezone": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "client_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "supplier_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "empty_message": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "subject_prefix": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "brightree_tenant": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "cmn_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "unassigned_cmn_faxes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "eligibility_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "outbound_cmn_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "brightree_patient_url_template": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "additional_documents_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "html": {},
    "error": {},
    "subject": {},
    "success": {},
    "cmn_count": {},
    "message_id": {},
    "recipients": {},
    "order_count": {},
    "report_date": {},
    "cmn_review_count": {},
    "eligibility_count": {},
    "cmn_completed_count": {},
    "cmn_unassigned_count": {},
    "cmn_snapshot_available": {}
  },
  "additionalProperties": true
}
```
