> For the complete documentation index, see [llms.txt](https://telegrambots.gitbook.io/book/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://telegrambots.gitbook.io/book/requests/sendmessage.md).

# Send Text

{% hint style="info" %}
[https://core.telegram.org/bots/api#sendMessage](https://core.telegram.org/bots/api#sendmessage)
{% endhint %}

#### Send a simple text using chat id

```csharp
SendText request = new SendText(123456789, "Hello, World!");

Response<TextMessage> response = await bot.HandleAsync(request);
```

#### Send a simple text using chat username

```csharp
using Telegram.Bots.Requests.Usernames;

SendText request = new SendText("@yourgroup", "Hello, World!");

Response<TextMessage> response = await bot.HandleAsync(request);
```

#### Send a website URL with its preview disabled

```csharp
SendText request = new SendText(123456789, "https://www.example.com")
{
  DisableWebPagePreview = true
};

Response<TextMessage> response = await bot.HandleAsync(request);
```
