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

# Create sender

> Create a Brevo email sender and begin verification.

`brevo.createSender` create a Brevo email sender and begin verification.

## Example

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

export default automation("Create sender", () => {
  onDashboardRun({ title: "Create sender" })
  brevo.createSender({ name: "Example", email: "hello@example.com" })
})
```

## Inputs

`name` and `email` are required. Optional `ips` assign dedicated IPv4 addresses. If any IP has a `weight`, every IP must and the weights must total 100. The second argument can select `{ account }`.

## Output

Returns the new sender `id` and optional SPF/DKIM error flags. Brevo emails a verification code when verification is required.
