import telebot
bot = telebot.TeleBot('token')
@bot.message_handler(commands=['start'])
def start_function(message):
    chat_id = 1000000000 # Сюда помещаем id пользователя кому будет отправлено сообщение
    bot.send_message(chat_id, 'Сюда вставляем текст!')
    
    
bot.polling(none_stop=True)markup.add(types.InlineKeyboardButton('Button'))markup.add(types.InlineKeyboardButton('Button', callback_data='qwerty'))
#или
markup.add(types.InlineKeyboardButton('Button', url='google.com'))