Skip to documentation
GenHealth integration

Send Email

Perform Send Email through GenHealth.

View as Markdown
send_email
write

Inputs

  • to
    text
    To

    Optional text value.

  • subject
    text
    Subject

    Optional text value.

  • body
    textarea
    Body

    Optional text value.

  • cc
    text
    Cc

    Optional text value.

  • html
    boolean
    Html

    Optional true-or-false value.

    Default: "false"

  • from_email
    text
    From Email

    Optional text value.

  • attachment_document_ids
    expression
    Attachment Document Ids

    Optional literal value or workflow expression.

  • attachment_paths
    text
    Attachment Paths

    Optional text value.

  • reply_to_thread_id
    expression
    Reply To Thread Id

    Optional literal value or workflow expression.

  • reply_to_message_id
    expression
    Reply To Message Id

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • message_idMessage Id
  • recipientsRecipients
  • errorError

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",
  "properties": {
    "cc": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "body": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    },
    "html": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "attachment_paths": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "reply_to_thread_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "reply_to_message_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "attachment_document_ids": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "message_id": {},
    "recipients": {}
  },
  "additionalProperties": true
}
View all GenHealth actions