---
title: "Send Email"
method: POST
path: "/email-integrations/{integration_id}/send"
tags: ["email-integrations"]
---

# Send Email

`POST /email-integrations/{integration_id}/send`

Send an email via the org's connected email provider.

Supports HTML/plain bodies, Cc/Bcc, Reply-To, S3-referenced attachments,
and replying onto a synced message's thread (reply_to_email_id).

## Path parameters

- `integration_id` string, required

## Request body

- SendEmailInput
  - `to` EmailAddressInput[], required
    - `address` string, required
    - `name` string, nullable
  - `subject` string, required
  - `cc` EmailAddressInput[]
    - `address` string, required
    - `name` string, nullable
  - `bcc` EmailAddressInput[]
    - `address` string, required
    - `name` string, nullable
  - `body_text` string, nullable
  - `body_html` string, nullable
  - `reply_to` EmailAddressInput
    - `address` string, required
    - `name` string, nullable
  - `attachments` AttachmentInput[]
    - `bucket` string, required
    - `key` string, required
    - `filename` string, required
    - `content_type` string, nullable
    - `inline` boolean
    - `content_id` string, nullable
  - `reply_to_email_id` string, nullable
  - `thread_id` string, nullable
  - `in_reply_to_message_id` string, nullable
  - `provider_reply_id` string, nullable
  - `prefer_draft` boolean

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/noso/apis/crucible-backend-api.md) · [All operations](https://skmtc.dev/noso/apis/crucible-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/noso/crucible-backend-api/revisions/112efbdea3eb/schema)
