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

# Forward

> Forward an Outlook message to new recipients.

`forward` sends an existing message to explicit recipients with content placed
above the forwarded message.

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

export default automation("Forward Outlook message", () => {
  forward({
    messageId: "AAMkAGI2...",
    to: [
      "owner@example.com",
      { address: "ops@example.com", name: "Operations" },
    ],
    body: "Please review the message below.",
  })
})
```

`messageId`, non-empty `to`, and `body` are required. Recipients are email
strings or `{ address, name? }`; `bodyType` defaults to text. Optional `account`
selects the binding. Returns `Signal<void>`. Outlook builds the forwarded
content and preserves the source message's included material.
