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

# Get email

> Get one Close email activity.

`close.getEmail` retrieves an email activity by ID.

```ts automations/get-close-email.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"

export default automation("Get Close email", () => {
  onDashboardRun({ title: "Get Close email" })
  const email = close.getEmail({ emailId: "acti_abc123" })
  // Add the Close email to the thread archive.
})
```

Provide `emailId`; optional second argument `{ account }` selects a named Close binding. Returns the `CloseEmail` activity, including recipients, message content, delivery state, sequence context, and attachments.
