> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# inboxCreateEmailDraft

GraphQL MUTATION

Reference: https://docs.revvue.ai/api-reference/inbox/mutations/inbox-create-email-draft

## GraphQL Schema

```graphql
mutation ExampleMutation($email: EmailInput!) {
  inboxCreateEmailDraft(email: $email) {
    id
    tenantId
    eventTime
    created
    changed
    createdBy
    changedBy
    activeState
    account
    folder
  }
}
```

## Variables

```json
{
  "email": {
    "id": "example",
    "tenantId": "example",
    "eventTime": "2026-09-18T23:33:00.876Z",
    "created": "2026-09-18T23:33:00.876Z",
    "changed": "2026-09-18T23:33:00.876Z",
    "createdBy": "example",
    "changedBy": "example",
    "activeState": "ACTIVE",
    "account": "example",
    "folder": "INBOX"
  }
}
```