Create draft
missive_create_draftCreate a draft email/message. WARNING: setting send=true SENDS a real email immediately (send_at schedules it) instead of saving a draft. Attach to an existing thread with conversation. Missive: POST /drafts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | The message body (HTML) — required. | |
| send | No | If true, SEND the email immediately instead of saving a draft. | |
| send_at | No | Unix timestamp to schedule the send. | |
| subject | No | The subject line. | |
| cc_fields | No | Cc recipients. | |
| to_fields | No | Recipients ({address, name?}). | |
| bcc_fields | No | Bcc recipients. | |
| from_field | No | The sender ({address, name?}). | |
| references | No | Message-ID references (for threading). | |
| conversation | No | Attach the draft to an existing conversation id. | |
| organization | No | Organization id to send from. | |
| add_assignees | No | User ids to assign to the conversation. | |
| add_shared_labels | No | Shared label ids to apply. |