# Send a telegram

Players send telegrams by using the configured telegram item:

```lua
Telegram = "telegram"
```

When the item is used, the telegram bird is called and the write interface opens when the player can interact with it.

***

## Normal Telegrams

Normal telegrams can include:

* Receiver first and last name.
* Sender identity.
* Telegram message.
* Optional money transfer.
* Optional current coordinates.

If `SSIdentityCard = true`, the sender can use identity card data and the receiver can be found through `SS-IdentityCard`.

***

## Anonymous Telegrams

Anonymous telegrams use:

```lua
AnonymousTelegram = "blacktelegram"
```

Anonymous telegrams hide the sender identity from the receiver.

***

## Item Consumption

```lua
UnlimitedTelegram = false
```

If `UnlimitedTelegram = false`, one telegram item is consumed after sending.

If `UnlimitedTelegram = true`, the player can keep using the item without consuming it.

***

## Official Sender Names

Official jobs can send telegrams using the institution/job name:

```lua
OfficialJobs = {"police", "PolitiaFederala"}
```

Use this for sheriff offices, police departments, federal offices, or other roleplay institutions.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sirecstudio.com/ss-telegram/send-a-telegram.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
