---
title: Send Email (Human Inboxes)
description: Send or draft messages from connected Human Inboxes.
surface: human
---

Use the Human send endpoint for connected-account delivery flows.

## Send now

```bash
POST /human/v0/send
{
  "human_account_id": "ha_123",
  "mode": "send",
  "to": ["customer@example.com"],
  "subject": "Follow up",
  "text": "Thanks for your message."
}
```

## Save draft

```bash
POST /human/v0/send
{
  "human_account_id": "ha_123",
  "mode": "draft",
  "to": ["customer@example.com"],
  "subject": "Draft response",
  "text": "..."
}
```
