import time
import telebot
token = '...'
bot = telebot.TeleBot(token)
chatId = '...'
send= open('111.txt','r' ,encoding='UTF-8')
while True:
line = send.readline()
mess = line
time.sleep(5)
bot.send_message(chatId, mess,parse_mode='html')
if not line:
break
send.close