> For the complete documentation index, see [llms.txt](https://laot7490.gitbook.io/ltbridge/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://laot7490.gitbook.io/ltbridge/ui-and-interaction/alert/send.md).

# Send

Shows a confirmation dialog. Returns 'confirm', 'cancel', or nil if dismissed.

{% hint style="info" %}
**Side:** Client · **Category:** Alert · **API:** `LT.Alert.Send`
{% endhint %}

## Example

```lua
LT.Alert.Send({
    header = 'Alert',
    content = 'Alert',
    centered = true,
    size = 'md',
    cancel = true,
    labels = { cancel = 'Cancel', confirm = 'Confirm' }
})
```

See [Alert data](/ltbridge/ui-and-interaction/alert/alert-data.md) for the full data table.

## Parameters

| Name   | Required | Description                                                       |
| ------ | -------- | ----------------------------------------------------------------- |
| `data` | Yes      | { header: string, content: string, centered: boolean, size = 'xs' |

## Returns

* `'cancel'|'confirm'|nil`
