@bot.message_handler(func=lambda message: True) def send_message(message:str):  user_first_name = str(message.chat.first_name) bot.reply_to(message, 'Hi ' + user_frist_name)  # Result: Hi Saeed

Read more of this post