> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Draft reply

> Create an Outlook reply draft for later editing and sending.

`draftReply` creates an unsent reply to the original sender. Use the returned
draft ID to add attachments or make further edits before `sendDraft`.

```ts automations/draft-outlook-reply.automation.ts theme={null}
import { automation } from "automate.ax"
import { draftReply } from "automate.ax/outlook"

export default automation("Draft Outlook reply", () => {
  draftReply({ messageId: "AAMkAGI2...", body: "Proposed response." })
})
```

`messageId` is required. Optional `body` adds content above the quoted message;
optional `bodyType` is `text` or `html` and defaults to text when a body is
present. Optional `account` selects the binding. Returns the created complete
`OutlookMessage`, normally with `isDraft: true`.
