> ## 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 email clicked

> Start an automation when a tracked link in a Brevo transactional email is clicked.

`onBrevoEmailClicked` emits `click` events for Brevo-tracked links.

```ts theme={null}
import { automation, log } from "automate.ax"
import { onBrevoEmailClicked } from "automate.ax/brevo"

export default automation("Record Brevo link clicks", () => {
  const event = onBrevoEmailClicked()
  log({ value: event.data })
})
```

`account` is an optional static Brevo binding. Returns the common event shape
with `event: "click"`. The clicked URL and related provider details remain in
`data`. Security scanners can follow links automatically, so a click is not
always a deliberate human action.
