> 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.

# sendEmailDraft

GraphQL MUTATION

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

## GraphQL Schema

```graphql
mutation ExampleMutation($email: EmailInput!, $operation: EmailSendOperation!, $ticketId: String, $locationId: String, $aiDraft: AiDraftRefInput) {
  sendEmailDraft(email: $email, operation: $operation, ticketId: $ticketId, locationId: $locationId, aiDraft: $aiDraft) {
    id
    tenantId
    eventTime
    created
    changed
    createdBy
    changedBy
    activeState
    account
    folder
  }
}
```

## Variables

```json
{
  "email": {
    "id": "example",
    "tenantId": "example",
    "eventTime": "2026-09-18T23:58:05.663Z",
    "created": "2026-09-18T23:58:05.663Z",
    "changed": "2026-09-18T23:58:05.663Z",
    "createdBy": "example",
    "changedBy": "example",
    "activeState": "ACTIVE",
    "account": "example",
    "folder": "INBOX"
  },
  "operation": "SEND",
  "ticketId": null,
  "locationId": null,
  "aiDraft": null
}
```