> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Email from Template

> Send a Brevo transactional email from an existing template.

**Send Email from Template** uses a Brevo template and optional parameter
values to send to one or more recipients.

## Inputs

| Input                   | Type                     | Required | Description                                     |
| ----------------------- | ------------------------ | -------- | ----------------------------------------------- |
| **Third-party account** | Brevo account            | Yes      | The API key used to send.                       |
| **Template ID**         | Non-negative integer     | Yes      | The Brevo template to use.                      |
| **Recipients**          | List of emails           | Yes      | One or more destination addresses.              |
| **CC**                  | List of emails           | No       | Carbon-copy recipients.                         |
| **Parameters**          | List of name/value pairs | No       | Values made available to template placeholders. |

For a parameter named `FIRSTNAME`, use the following placeholder in Brevo:

```text theme={null}
{{params.FIRSTNAME}}
```

## Output

| Output         | Type   | Description                      |
| -------------- | ------ | -------------------------------- |
| **Message ID** | String | Brevo's identifier for the send. |

<Tip>
  Keep parameter names stable and match their capitalization exactly between the
  template and the workflow.
</Tip>
