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

# On Resend event

> Run an automation for any supported Resend webhook event.

`resend.onEvent` handles every supported email, contact, domain, and suppression event. Prefer a family or semantic trigger when the automation only needs one category.

```ts automations/watch-resend.automation.ts theme={null}
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"

export default automation("Watch Resend", () => {
  const event = resend.onEvent()
  event.transform(({ event }) => ({ type: event.type }))
})
```

Optional static `account: string | IntegrationAccountReference<"resend">` defaults to the project binding. Returns the matching email, contact, domain, or suppression event, with the provider envelope preserved in `event`.
