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

> Start an automation when Brevo accepts a transactional email for sending.

`onBrevoEmailSent` emits Brevo `request` events. This confirms provider
acceptance, not recipient delivery.

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

export default automation("Record accepted Brevo sends", () => {
  const event = onBrevoEmailSent()
  log({ value: event.messageId })
})
```

`account` is an optional static Brevo binding. Returns the [transactional event
shape](/reference/integrations/brevo/triggers/on-transactional-event#trigger-data)
with `event: "request"`. One email request may later produce delivered, bounce,
open, click, or other events for the same `messageId`.
