> ## 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 forward

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

`draftForward` creates an unsent forward. You can omit recipients initially and
add them later with `updateMessage`.

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

export default automation("Draft Outlook forward", () => {
  draftForward({
    messageId: "AAMkAGI2...",
    to: "reviewer@example.com",
    comment: "Please review the original message below.",
  })
})
```

`messageId` is required. Optional `comment` is placed above the forwarded
message; optional `to` accepts one or more email strings or `{ address, name? }`
objects. Optional `account` selects the binding. Returns the created normalized
draft. Pass its `messageId` to `addAttachment`, `updateMessage`, or `sendDraft`.
