I am working on a telethon where I want to send message to the users from their telegram ID. I am sending the message from the bot and not from the client. I am taking users Telegram ID from the data frame (newuser) and sending the welcome message to them. But I am facing PeerIDInvalidError.

bot = TelegramClient('session', api_id, api_hash).start(bot_token=bot_token)

for id in newuser['Telegram ID']:
    print('id:', id)
    await bot.send_message(id, 'hello')
0

There are 0 best solutions below