Send Monthly Intake Report
Perform Send Monthly Intake Report through GenHealth.
send_monthly_intake_report_emailwrite
Inputs
- Report
reportjsonrequiredRequired JSON value.
- Preconditions Ok
preconditions_okexpressionrequiredRequired literal value or workflow expression.
- Write Enabled
write_enabledbooleanOptional true-or-false value.
Default:
false - To
totextOptional text value.
Default:
"daniella@genhealth.ai" - Cc
cctextOptional text value.
- Subject
subjecttextOptional text value.
Default:
"SoundView Monthly Intake Report — {report_period}" - Generated On
generated_ontextOptional text value.
- Generated At
generated_attextOptional text value.
- From Email
from_emailtextOptional text value.
- Gmail Group Email
gmail_group_emailtextOptional text value.
Outputs
successSuccesssentSentpreviewPreviewskip_reasonSkip Reasonreport_periodReport Perioditem_keyItem KeyrecipientsRecipientssubjectSubjectattachment_nameAttachment Nameattachment_content_typeAttachment Content Typeattachment_size_bytesAttachment Size Bytesmessage_idMessage IderrorError
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
{
"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
{
"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
}