> 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/notify/send.md).

# Send

Send a notification to a player.

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

## Example

```lua
-- Client (local player)
LT.Notify.Send('Title', 'Hello!', 'success', 5000)

-- Server (target player)
LT.Notify.Send(source, 'Title', 'Hello!', 'success', 5000)
```

## Parameters

| Name      | Required    | Description                                      |
| --------- | ----------- | ------------------------------------------------ |
| `source`  | Server only | Player server ID                                 |
| `title`   | No          | Notification title (some providers ignore this)  |
| `message` | Yes         | Notification message                             |
| `variant` | No          | `'success'`, `'error'`, `'info'`, or `'warning'` |
| `length`  | No          | Duration in ms (default: 3500)                   |

## Returns

Nothing.
