How to message on telegram


How to Send Message in Telegram

Telegram is a cloud-based messaging app that adds a lot of convenience to your communication. The platform lets you transfer conversations between computers, smartphones, and tablets. It also provides great security, owing to the secret chats feature. But how exactly do you send messages on Telegram?

In this entry, we’ll go through all intricacies of Telegram messaging.

How to Send a Message on Telegram

Quick Links

  • How to Send a Message on Telegram
  • How to Send a Message to Myself on Telegram
  • How to Send a Message to a Bot on Telegram
  • How to Send a Voice Message on Telegram
  • How to Send a Direct Message on Telegram
  • How to Send a Video Message on Telegram
  • How to Send a Message on Telegram With an API
  • What to Do if Telegram Fails to Send a Message
  • What to Do if Telegram Is Unable to Send a Message
  • Additional FAQs
    • How Can I Send Message to Telegram API?
    • Can Telegram Send SMS?
  • Step Up Your Chat Game

Sending a message on Telegram is just as easy as with other similar apps:

  1. Download and install the app from Google Play or App Store.
  2. Type in your phone number and enter the verification code Telegram sends you.
  3. Add a picture and your name.
  4. Allow Telegram to access your contacts list.
  5. Hit “Contacts” in the lower part of your screen, and you’ll see a list of friends using the app.
  6. Select a friend and use the text field to type and send your message.

How to Send a Message to Myself on Telegram

You can send a message to yourself with the “Saved Messages” function:

  1. Open the app and go to the menu in the top-left corner.
  2. Press “Saved Messages.”
  3. Type your message here, and you’re all done.

How to Send a Message to a Bot on Telegram

Once Telegram bots are set up, users can interact with them by sending commands, messages, or requests. Here’s how the process works:

  1. Start Telegram and enter your log-in information.
  2. Type in “@Botfather” in your search bar and choose the bot that appears in the search results.
  3. Press the “Start” button to activate the bot.
  4. Enter “/newbot” and send the command.
  5. Select a name and username for the bot. Users will be able to find their bot by searching for its username, but it mustn’t overlap with other bots’ usernames.
  6. Once you’ve chosen an appropriate name for the bot, it will be created. You’ll then receive a link to the bot, suggestions on setting up the profile picture, commands for managing the bot, and some other details.
  7. Follow your link and you’ll be able to send your bot a message the same way you do with your friends.

How to Send a Voice Message on Telegram

If you’re too busy to type, sending a voice message to your friend will save you some time:

  1. Open Telegram and go to your chat windows.
  2. Choose a chat and tap the microphone symbol in the lower-right corner.
  3. Hold the symbol and start talking.
  4. Once you’re done, release the symbol, and the voice message will be sent.

How to Send a Direct Message on Telegram

Direct messages are also referred to as private messages on Telegram. Sending them is relatively straightforward:

  1. Launch Telegram.
  2. Press “New message.”
  3. Select the recipient of the message.
  4. Press the username of the person to open your chat with them.
  5. Type in your message.
  6. Hit the “Send” button, and you’re good to go.

How to Send a Video Message on Telegram

Telegram doesn’t lag behind other platforms in terms of the media you can send through the app. One of your options is a video message:

  1. Start the app and open a chat.
  2. Hit the microphone symbol to launch camera mode.
  3. Hold the camera symbol and record your message.
  4. Release your recording button, and the message will be sent.

How to Send a Message on Telegram With an API

Using an API to send your Telegram message is a bit more complex. You’ll require the services of a bot:

  1. Find the Botfather bot by looking it up in your search box.
  2. Once you’ve set up your bot, type in “/newbot” in the chat box. You’ll then be asked to name your bot and give it a username. You’ll then receive a link to the bot and your API token.
  3. Click the link to reach the box where you’ll receive your messages. Since bots are designed not to send spam, they can’t start a chat, meaning that you’ll need to send a message first to allow the bot to text you back.
  4. You now need to call Telegram’s API to obtain your chat_id. You have two methods here.
  5. The first one comes down to reading the text you sent using curl and its getUpdates approach: curl https://api.telegram.org/bot%7BYOUR_API_KEY_HERE%7D/getUpdates
  6. Alternatively, you can use Python 3:
    • >>> import requests
    • >>> token = {YOUR_API_KEY_HERE}
    • >>> url = f'https://api. telegram.org/bot{token}/getUpdates'
    • >>> requests.post(url).json()
  7. You should then receive your JSON payload: {"ok":true,"result":[{"update_id":12671344, "message":{"message_id":30,"from":{"id":{YOUR_ID},"is_bot":false,"first_name": "{YOUR_NAME}" ,"username":"{YOUR_USERNAME}","language_code":"en"},"chat":{"id":{YOUR_CHAT_ID},"first_name":"{YOUR_FIRST_NAME}","username":"{YOUR_USERNAME}","type":"private"},"date":1560719493,"text":"{YOUR_SENT_MESSAGE}"}}]}
  8. Use {YOUR_CHAT_ID} number that consists of approximately nine numbers.
  9. You’ll now be able to send a message with the sendMessage function: curl -d chat_id={YOUR_CHAT_ID} -d text="test msg from curl" https://api.telegram.org/bot{YOUR_API_KEY_HERE}/sendMessage
  10. Another option is Python 3:
    • >>> import requests
    • >>> token = {YOUR_API_KEY_HERE}
    • >>> url = f'https://api. telegram.org/bot{token}/sendMessage'
    • >>> data = {'chat_id': {YOUR_CHAT_ID}, 'text': 'python msg'}
    • >>> requests.post(url, data).json()
  11. You’ve now successfully sent a message using Telegram’s API.

What to Do if Telegram Fails to Send a Message

If your Telegram doesn’t send a message for some reason, two simple solutions might do the trick:

  1. Return to Telegram’s front page and head back to your message.
  2. Alternatively, restart the app, return to the message and try to re-send it.

What to Do if Telegram Is Unable to Send a Message

If you can’t send your message and the problem persists, your best option is to reach out to Telegram’s customer support. You can describe your issue here, enter your phone number, and leave your email address. Hopefully, their team will feed you a viable solution.

Additional FAQs

How Can I Send Message to Telegram API?

Sending a message to Telegram’s API requires you to set up a bot. Next, you’ll need to use curl or Python 3 to generate your chat_id and send your message using the sendMessage command.

Can Telegram Send SMS?

Unfortunately, you can’t send an SMS using Telegram. The app still doesn’t support this feature.

Step Up Your Chat Game

If you thought you might not be into Telegram due to cumbersome messaging features, all your worries are now dispelled. The app is easy to use, and once you’ve activated it, texting is just as easy as on any other platform. Best of all, you can send videos, voice messages, and even set up bots and issue various commands. The options are nearly endless.

Have you set up your Telegram profile? Do you find the interface user-friendly? Are all the features easily accessible? Let us know in the comments section below.

How to Rename Columns in the Google Sheets App

Read Next 

How to Pin and Manage Messages in Telegram

One neat feature that seems to be quite underrated in the world’s favorite chat app, Telegram, is the ability to pin a message. Pinning messages keeps it at the top of your chat list, ensuring you can access it quickly and easily. You can pin your private chats or those in groups, and it is convenient indeed.

People pin messages frequently. It tends to be conversation threads that they want to return to, or when people send links, they don’t have time to check right away. Users pin the chat, access it quickly, and then unpin it when they have done what they wanted. Groups often pin important messages, too, to ensure every member has the chance to read them.

How to Pin a Message in Telegram

It is relatively simple to pin a message in Telegram, so it gets used often. You can pin chats between individuals or groups, and the process is the same.

  1. Open the chat you want to pin in Telegram.
  2. Tap on the chat until a popup box appears.
  3. Select “Pin,” then choose whether to allow all parties to know you pinned it.
  4. Confirm your action by tapping “PIN.”
  5. Your chat remains at the top of your message screen, ready for you to do what you need to do with it. When you no longer need it, simply tap the “x” icon and select “Unpin.”

That isn’t all you can do with Telegram chats. Here are a few more tips and tricks for Telegram that will supercharge your experience.

Edit Sent Messages in Telegram

One unusual but welcome feature in Telegram is the ability to edit messages, even after you sent them. If you send a group message or a chat with someone essential and spot a glaring typo, you can go into that message and edit it after the fact.

  1. Open the chat you want to edit in Telegram.
  2. Long press on the chat.
  3. Select “edit” (pencil icon) from the popup box.
  4. Make your change and tap on the “save” icon (checkmark icon).

The message gets changed for everyone, and a pencil icon shows that the message got edited too.

Reply to Messages from Your Home Screen in Telegram

Like you can reply to SMS notifications from your phone’s “Home” screen, you can do the same in Telegram. You need to enable the function first, but if you’re usually quick off the mark when replying, this can save precious seconds.

  1. Open Telegram and select “Settings.”
  2. Select “Notifications and Sounds.”
  3. Enable Notifications for chats.

This setting displays a notification on your “Home” screen when you get a message. You can then tap that message and reply directly.

Read Telegram Messages without Telling the Sender

If curiosity gets the better of you and you cannot wait to read a message but don’t have time for a protracted chat, you can secretly read Telegram messages. The process is the same as other chat apps—use airplane mode.

  1. Allow Telegram to download the message as usual.
  2. Turn on “Airplane mode” in your phone.
  3. Open and read your Telegram message.
  4. Shut down Telegram until you want the read receipt to be sent.

Using “Airplane mode” is an old trick but still a useful one.

How to Hide When You Were Last on Telegram

There are times when you sneak on to Telegram, but you don’t want certain friends to know. The reasons are many and likely all valid, so it’s good that you can hide the “Last Seen” setting.

  1. Open Telegram and select “Settings.
  2. Select “Privacy and Security.”
  3. Modify “Last Seen & Online.”

Within the “Last Seen” setting, you get to choose who sees what and can even add exceptions to any rules you set. It’s a neat little feature that comes in handy sometimes.

Sort Your Chats with Hashtags in Telegram

If you have a massive group in Telegram, it might be helpful to sort all your conversations with hashtags. These work in the same way as they do on Twitter. You can search for particular hashtags quickly. The process is Ideal for busier groups.

  1. Open a message within Telegram.
  2. Tap on the “vertical ellipsis” (three-dotted icon) in the upper right section to access the search option.
  3. Type the “hashtag” (#) character followed by a meaningful term.

You can now search using that hashtag, as will other people in the group.

Stop GIFs from Autoplaying in Telegram

Many people don’t like GIFs. They find them incredibly annoying and not that funny most of the time. The ability to stop them from auto-playing and flashing or moving on your phone is invaluable. Here is how to enable the setting.

  1. Open Telegram and select “Settings.”
  2. Tap on “Data and Storage.”
  3. Toggle “Auto-play media GIFs” to off.

Now, you get to enjoy a GIF-free Telegram experience. You can still play GIFs when you select them, but they will no longer flash annoyingly at you until you manually trigger them.

In closing, pinning messages in Telegram is relatively easy, and it makes your selected chats stand out from the rest to keep things organized. Also, managing your chat messages is not complex if you know what you can do, such as sorting by using hashtags, editing your messages, controlling animated GIFs in chats, and more. The shortcuts also speed things up, such as replying to others directly from the “Home” screen.

10 Telegram features that will make your life easier

Telegram is used by many, but few know about its hidden features. We talk about ten non-obvious features of the messenger that will make its use even more convenient and efficient

Content

  1. Video calls
  2. Delayed message sending
  3. Sending messages without sound to the recipient
  4. Grouping dialogs into folders
  5. Time codes on video
  6. Multiple accounts in one app
  7. Reminders to oneself
  8. Name display setting when forwarding messages
  9. Secret chats and self-destructing files
  10. Hashtags in chats

Video calls

A long-awaited feature that appeared in Telegram relatively recently. Now you can call your loved ones and colleagues using video, such as Skype or WhatsApp. In order for the new feature to appear in your application, update it to the latest version. After that, you will be able to make and receive calls from other users. To make a call, simply go to the chat with the person you want to chat with, click on the top right menu and select Video Call.

Starting a video call in Telegram (Photo: Natalia Gavrilova for RBC)

You can also start a video call by going to the user's profile and clicking on the camera icon.

Starting a video call from a profile (Photo: Natalya Gavrilova for RBC)

Call data is stored in a separate section. For Android devices, everything is simple: the "Calls" section is located in the left side menu. For iOS devices, this section must be enabled. To do this, go to "Settings" → "Recent Calls" and activate the slider for "Calls Tab".

Calls section on an Android device (Photo: Natalia Gavrilova for RBC)

Delayed message sending

Another useful feature is sending delayed messages. Essentially, you are sending a normal message. However, instead of instant delivery, you can choose any day and time when the interlocutor receives it. This feature can be used when you don't want to disturb your colleagues on the weekends or as a reminder to your loved ones.

To send a message with delayed delivery, write the text and hold down the send icon. Select "Send Later" from the menu that opens. This is where you can set the date and time the message was sent.

Sending a delayed message (Photo: Natalia Gavrilova for RBC)

Setting the date and time of a delayed message (Photo: Natalya Gavrilova for RBC)

The message itself will be stored in a separate place. It is easy to find it: go to the chat with the interlocutor and in the message input field you will see the calendar icon. Click on it and you will be taken to the section with scheduled messages for this user. Here you can edit or delete such a message.

Go to the section with pending messages (Photo: Natalya Gavrilova for RBC)

Sending silent messages to the recipient

Silent messages are a great feature if you don't want to disturb or distract the recipient with a notification sound. For example, if you send a message at a later time or you know for sure that the other user is currently busy with something. To use this feature, simply write a message and hold down the send icon. From the menu that appears, select "Send without sound." The message will be delivered, but the user won't hear a notification even if they have Silent disabled.

Sending a message without sound to the recipient (Photo: Natalya Gavrilova for RBC)

Grouping conversations into folders

For a long time, Telegram users have been missing the ability to sort everything “on the shelves”: to separate personal and work chats, as well as group chats and public channels. This feature is now available in the app. To clean up your chats, go to "Settings" → "Folders". Next, click on "Create a new folder", give it a name and add the necessary chats to it.

Go to the "Folders" section (Photo: Natalya Gavrilova for RBC)

Creating a new folder (Photo: Natalia Gavrilova for RBC)

Video timecodes

Video timecodes are another little-known yet very handy feature in Telegram. For example, you send a video to your interlocutor, but you want him to watch it from a certain minute. In order not to force the user to rewind the video himself, simply add the time from which you want to watch. For example, "watch from 3:02". The app will automatically start playing the video from now on.

Timecode function in Telegram (Photo: Natalya Gavrilova for RBC)

Multiple accounts in one app

Telegram provides another cool feature: quickly switch between different accounts. This can come in handy if, for example, you want to strictly separate work and personal communication. To set up this feature for Android devices, just go to the left side menu and select "Add account". For iOS devices, you need to go to "Settings", click on "Edit" in the upper right corner and add a new account.

Adding another account within the same Android application (Photo: Natalya Gavrilova for RBC)

Reminders to yourself

You can send reminders not only to other users, but also to yourself. For other users, this works through scheduled messages, and the Favorites section will come in handy for this. Favorites are like a chat with yourself. Only you can see messages in this chat. This section is convenient to use as a cloud storage where you can send important messages, take notes, send photos and videos.

To create a reminder, go to Favorites and write a message. Press the send message icon and select "Set Reminder" from the menu that appears. Next, you need to set the desired date and time. At the appointed time, a reminder will come to you in Telegram as a regular message.

Setting a reminder in Telegram (Photo: Natalya Gavrilova for RBC)

Setting the display of the name when forwarding messages

Did you know that when someone forwards your messages, the third party sees your name and, moreover, can follow it to your Telegram profile? Well, then - write or even call, depending on your privacy settings.

Don't want other people to be able to view your profile and get in touch with you? Then go to "Settings" → "Privacy" → "Message Forwarding". In this section, you can choose who can link to your account when forwarding messages.

Name display setting when forwarding messages (Photo: Natalya Gavrilova for RBC)

Secret chats and self-destructing files

Secret chats are chats with a high degree of protection. At the very least, it is claimed that strong encryption is used for them, and also that information from them is not stored on Telegram servers. To go to this level of communication, open the contact's profile, go to the menu in the upper right corner and click "Start Secret Chat". After that, a separate chat with this user will be created in the messenger, but already secret. You cannot forward messages from such a chat.

Creating a secret chat with a user (Photo: Natalya Gavrilova for RBC)

Another interesting feature of secret chats is self-destructing files. It can be both ordinary messages and photos or videos. They will be deleted automatically after your interlocutor looks at them. You set the deletion interval yourself. For example, five seconds after viewing. You can't take a screenshot while in a secret chat.

To send such a self-destructing message or file, go to the secret chat and click the three dots in the top right corner. In the menu that appears, select "Enable timer deletion", and then select the desired interval.

Hashtags in chats

Hashtags in Telegram is a tool that helps you quickly find some important messages. They work in such a way that they display in a separate list all messages in which the hashtag is present. Hashtags are also a convenient way to sort data in the Favorites section. If you actively use Favorites to store important notes, photos and other files, then hashtags will just help you not to get confused. Putting hashtags is quite simple: add a pound sign and a search keyword without a space to the text of the message, #like that.

Search by hashtag in Telegram (Photo: Natalya Gavrilova for RBC)

Detailed instructions for Telegram for computer

Channel "According to the rules"

Telegram is a messenger with unique features. We especially note the stable delivery of messages, instant synchronization and convenient search, because of which we at the bureau transferred our working correspondence to Telegram. We have prepared an instruction for our philologists - elementary, for beginners. We hope that it will be useful to you as well - it will allow you to quickly get used to Telegram and use it effectively.

The instruction is written on the example of Telegram Desktop for Windows and is relevant at the beginning of 2022 (screenshots may not match the current version of the interface, but this is because Telegram is constantly evolving 🙂).

How to install and register

Download the installation file: https://desktop.telegram.org. You can save it on your desktop and delete after installing the program.

Run the downloaded file - "Telegram" will be installed. A window will open, press button Start Messaging .

Enter your phone number, press Next .

A message will appear below the title asking you to click on the link here .

You will receive an SMS with a code. Enter it into the program window.

Done: you have registered in Telegram and can already communicate.

How to set the interface language to Russian

Go to Telegram settings: press , then Settings , Language , select Russian .

Telegram will restart - the interface will be in Russian.

How to set up

Go to the "Telegram" menu and click "Settings".

Set up the program as you like. We'll give you directions.

Notification settings

General and interface scale

If unchecked Show tray icon , clicking on the cross icon will close the entire program. Leave the checkbox - and the program will minimize to tray without closing (this is how Skype is often set up).

You can set an arbitrary interface scale - to do this, specify -scale 145 in the Telegram launch shortcut, for example:
"C:\Program Files\Telegram Desktop\Telegram.exe" -scale 145 .

Chat settings

Replace emoticons - a smiley from signs, such as :-), will be replaced by emoji.

Do not ask for the path to save - if you do not check the box, then Telegram will ask each time where to save downloaded files.

Appearance customization

Chat background can be changed: choose one of the preset pictures or upload your own. Tile background - repeat the image to fill the entire background if it is too small. Relevant for small background images.

The chat feed can be made narrow. This cannot be done from the initial window, so go to any chat and hook the line between the chat list and the correspondence area with the mouse. It will take the form of a double-headed arrow.

Swipe to the left, and only the avatars of the conversations will remain in the chat area.

If you now press Esc, the cursor will move to the global search field and the chat list will automatically expand.

The chat feed can be completely hidden by making the program window narrow.

How to change the first name, last name and profile photo

Edit your name only through Telegram settings (menu button > Settings > Edit profile > Name ):

In the same place, in Profile information , you can set or change your photo (button Select photo ). Use a square image that is at least 512 x 512 pixels.

Contacts, public name and phone number

How to add a contact to Telegram by phone number

An easy way to add someone you know well to your contact list is to enter their phone number.

In the program menu, go to section Contacts .

Click the link Add contact on the bottom left.

Enter first name (last name is optional), phone number, press Add .

The name of the contact is changed via his profile. Open a chat with a user and click on their name at the top left, or select Show profile from the chat menu. In the profile, click Edit contact , enter a new name and click Done .

How to find and add a contact by public username

Your own public telegram name is set in the settings ( Edit profile ).

Brief. You can add any Telegram user to the contact list, for this you don’t need to know his phone number - just find the interlocutor by the public username (telegram name, username) or simply open the user profile in a group chat and click Add contact .

Detail. How to add an interlocutor without a phone number:

  1. Find the user through the universal search bar or via "Contacts" (use format @username ). Another option is to click on the name of any member of any chat.
  2. A new chat window will open. If you start a conversation, the dialogue will be added to the chat list under the name that your interlocutor has set himself. But this user will not be in your contact list (in the "Contacts" section of the "Telegram" menu), and you will not be able to rename it until you add it to the contact list.

  3. You can chat - the correspondence will remain in the list of your chats. If you want to add the interlocutor to "Contacts", go to his profile and press Add contact . Then you can set this contact any first and last name.

Phone number

"Telegram" is tied to a phone number.

Your phone number is visible only to those users and groups that you have allowed to see it in settings Privacy > Phone number > Who sees my phone number . It is impossible to find out the phone number of another person through Telegram if the specified address in the settings is set to Nobody .

Interlocutors do not see your phone number when they found you by telegram name, are in the same group chat with you, or when you add them to "Contacts" by their phone number.

The only time another user sees your phone number is if he already knows your number and has added you to the contact list on his smartphone.

Contact search and phone number privacy: total

  1. Found user by telegram name or in group chat - you don't know his phone number, but you can chat in the chat without adding it to "Contacts". The conversation will be saved in the feed of your chats under the name that the interlocutor has set for himself in his profile.
  2. Know phone number of user - add to "Contacts". You can specify any first and last name for this contact.
  3. Nobody will recognize your phone number through Telegram until you want it to.

Message delivery, latest activity and online status

Telegram cares about privacy, so it does not show that the message cannot be delivered to the interlocutor. If the recipient does not have an Internet connection, you will not know about it.

Messages have two delivery statuses:

  • One checkbox (tick): the message has been sent and received by the Telegram server.
  • Two flags: The message has been viewed by the recipient.

In the privacy settings under Last activity you can prevent other users from seeing when you were last online.

Keep in mind that the interlocutor will still see you online (a green “online” icon will appear next to your name) for 30 seconds after you:

  • read the message of this interlocutor in a personal chat;
  • sent any message to a private or general group chat.

New message notifications

By default, Telegram signals a new message with a sound, a pop-up window, the appearance of an unread messages icon on the program icon and in the chat feed.

How to work with desktop notifications:

  • It is convenient to answer quickly through the pop-up window: click Reply , type in the answer, press Enter.
  • If you send an empty reply ( Reply > don't type anything in the message box > Enter or the balloon button), the conversation will be marked as read and the mark of missed messages will disappear. In this case, you do not need to enter the chat in which new messages have arrived.
  • If you click Hide all messages or the cross icon in the pop-up window, the conversation will remain unread . In order for the mark about unread messages to disappear, you will need to enter the chat with these messages.

In any chat, group and private, notifications can be turned off.

Set the shutdown period.

Disabled message notifications will stop popping up, the "Telegram" icon in the taskbar and tray will not change, but the number of unread messages will be indicated in the chat feed.

If you uncheck the Desktop notifications checkbox in the settings and do not disable chat notifications, after a new message in this chat, the Telegram icon will indicate the number of unread messages in a red circle, but the desktop notification will not pop up .

A muted group chat signals a new message when you are directly contacted: mentioned by telegram name ( @username ) or quoted (replied to your message). A dog icon will appear. Click on it to go to the mention.

But if you turned off notifications in personal chat with the person who quotes or mentions you, then the notification will not come from the group chat either.

Chat feed sorting

Chats are pinned to the top of the conversation list. Sort them by drag and drop. New messages do not change the order of the pinned conversations.

Unpinned conversations are sorted automatically in the order of messages received: the later the last message arrived, the higher the chat.

Chats can be combined into folders and conveniently switch between them through the folders panel on the left. You can also pin chats to folders.

A special "working mode" allows you to hide chats with disabled notifications from the feed. Go to "Settings" and type on the keyboard in the English layout workmode . Telegram will ask whether to activate the "In work" mode. Click OK .

Telegram will restart and the options Hide muted chats or Show all chats will appear above the list of conversations. Type workmode again in the settings to disable this mode.

Search, chat history

Press Esc on the keyboard - and the focus will go to the global search field, no matter where you are in Telegram. Search for everything at once: users, group chats or public channels - by telegram name, messages at in all chats with your participation - by broad query or "exact query" (in quotation marks). The symbol @ in the search bar allows you to display all the answers to your remarks.

Quick navigation through the search results from the keyboard: Alt + Up or Down.

In a group chat, you can filter messages from a specific user and search only for them.

When you scroll up the correspondence, the date pops up. It is easy to navigate, records for which day is now on the screen. Click on a date and the calendar will open. Select a number in it and go to the messages for that day (for example, to the correspondence for September 3).

Arrow at the bottom right allows you to return to the present moment.

Leave in messages #hashtags (pound sign and any word without a space). Subsequently, it will be enough to click on the hashtag, and all messages with this hashtag from the current chat will open in the search bar. For example, name the term - mark the message with the hashtag # term . If you are discussing a problem, information about the solution of which will be required in the future, also mark it with a hashtag.

In the profile of any conversation (both personal and group), search is available for sent files. While in a chat, click on its name at the top. The list is in the Shared Files section. Search for documents by title or filter by type: files, photos, links.

Files (up to 1.5 gigabytes in size) and messages are stored in the cloud indefinitely. Delete them and you can restore them only with the help of your interlocutor. You will have to ask him to copy or forward messages from the chat. If the interlocutor also deleted the history of correspondence, it will not be possible to restore it.

Chat Techniques

How to quote message

First way: immutable quote. Right click on the replica, select Reply .

Enter answer:

If you want to go to the quoted message, click on the quote.

You can also quote yourself. If you need to return to the discussion of some issue, find your post and quote. Participants in the conversation will be able to click on the quote and go to the original message.

By the way, if you then press the round button Down , you will be taken not to the very bottom of the chat, but to the place from which you switched to the replica - conveniently.

Second way: text quote. Select message with mouse or via context menu Select message , copy (Ctrl + C or Copy selected as text ).

The text of the message, its author and the time of sending will be copied, but the quote will not become a link to the source.

To copy only the text, without the name of the author and the time of sending, will allow the item Copy text in the context menu.

How to forward a message

The scheme is the same as with quotes. Select the message to be forwarded with the mouse and click the button Forward or use Forward message in the context menu.

If you write a comment to the replica being forwarded, it will appear in the addressee as a separate message over forwarded.

Messages from private and public channels are forwarded in the same way.

A message from a telegram channel can be sent even faster: click on the arrow to the right of the message, in the window that opens, select the recipient (person or group) and click Send .

Drafts and bookmarks

Unsent messages are automatically saved in the input field and turned into drafts. This feature helps to mark any message in a long conversation in order to return to it later - to make a kind of bookmark. The option "Mark messages unread from here" in Skype works in a similar way.

Quote the desired remark and enter, for example, an exclamation point in the input field. When you reopen this chat, you will see a draft with the quoted message. Click on a quote and navigate to that message in the conversation. An exclamation point is not necessary - just Reply is enough, and the quote will become a draft.

How to edit your posts

Hover over message > right click > Edit . If you are editing your last (bottom) post, simply press the Up key on your keyboard. Save changes - Enter.

How to delete messages

Select as many messages as you like with the mouse. You have three options:

  • Right-click and select Delete selected from the context menu.
  • Click the Delete button at the top of the window.
  • Press Del on the keyboard.

Both your own and other people's messages can be deleted and from the interlocutors too . To do this, check the box Delete from all (or Delete from Interlocutor name in personal correspondence).

You can delete and edit messages within an unlimited time after sending.

Other techniques

Favorites. Send messages to yourself by clicking on the shortcut icon in the program menu or on your profile picture. Leave notes, keep a list of tasks, share files between your devices, save important messages from other dialogs for later.

To address a specific participant in the conversation (they will receive a notification), dial @ and select a user from the list.

Line breaks in messages are done using Ctrl + Enter and Shift + Enter (in image and file captions, only Shift + Enter).

Chat position is saved when switching between conversations.

You can record a voice message or make a call (microphone required).

If you hover your mouse over the information about the number of participants in a small group chat (not a supergroup), a list of these participants will pop up. There is a colored asterisk next to the name of the creator, and a colorless asterisk next to the names of administrators. When everyone in the chat is an administrator, the asterisk is only next to the name of the creator.

Text formatting

Alternative: use keyboard shortcuts or context menu (right mouse button > Formatting .

Highlight text in chat: two asterisks ( * ) - bold, two underlines ( _ ) - italics, text between grave characters ( ` ) - monospace font.

** bold (as many lines as you want) **

__ italic (as many lines as you like) __

`monospace single line`
```
monospace
multiple lines
```

Emoji, animation and object insertion

Send files and images by dragging the mouse into the chat or pasting from the clipboard (Ctrl + V). You can send several pictures at once in one album - just insert them one by one.

To quickly insert an emoticon, type a colon and start typing the name of the emoji in English.

Emoji list with codes:

  • Emoji cheat sheet by WebpageFX (click on emoticon to copy code).
  • Emoji cheat sheet (search by keywords; hover over to see code).

Emoji not inserting? Look closely: a panel of color options for this emoticon has appeared (relevant for body parts). Choose a skin color.

Mostly classic full emoticons with a nose are converted into pictures.

To view a sticker in a larger view before inserting it into the chat, click on it with the mouse and hold down the left key. A set of stickers "According to the rules."

To hide the panel with stickers and emoticons, click on the smiley face on the right side of the field for entering messages, and the panel will collapse.

Telegram has built-in bots for quickly inserting media objects into a message. Type in the message entry field @name of the worker and a search phrase separated by a space. You will be able to find and quickly insert an image, animated GIF file, video, etc. List of useful bot commands:

@gif (search in English for animated GIFs on Giphy.com), @vid (search for YouTube videos), @pic (search for images in Yandex), @ya (search in " Yandex"), @wiki ru (search for articles in the Russian-language Wikipedia), @sticker (search for official stickers corresponding to the entered emoticon).

Embedded bot examples:

Themes

Change not only the background, but the entire design of Telegram using themes. Search for themes in the official channel for Telegram Desktop themes or type in any chat @tthemebot and space-separated keywords in English to search for the theme.

To change the theme, in the program settings in the section Background for chats click Select file and select the theme file from your computer. Another option: send a topic to chat with you, click on the file name. A preview of the theme will open - press Apply theme at bottom right.

Hot keys

Hot keys Action
Ctrl+B Bold formatting
Ctrl+I Italic formatting
Ctrl + Shift + M Monospace formatting
Ctrl+K Inserting a link
Ctrl+Shift+N Cancel formatting
Up Editing the last post
Esc Close the chat and go to the chat list
General search for the names of contacts, groups, channels and all messages in chats from your chat list
Ctrl+F Search open chat
Alt + Up or Down

Ctrl + Tab / Ctrl + Shift + Tab

Ctrl + PgUp / Ctrl + PgDn

Move up/down through dialogs or search results
Ctrl + Up/Down Select replica for quick response
Ctrl + M Close program
Ctrl+W Minimize program to tray
Ctrl+Q Exit the program.

Learn more