Send an Excel file into Telegram group using node-telegram-bot-api
import*asTelegramBotfrom'node-telegram-bot-api';import*asfsfrom'fs';constTOKEN='<your_token_got_from_gotfather>';constGROUP_ID='<your_group_id>';constFILE='./data.xlsx';constbot=newTelegramBot(TOKEN);bot.sendDocument(GROUP_ID,fs.readFileSync(FILE),{caption: 'Daily Report'},{filename: 'data.xlsx',contentType: 'application/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'}).then(()=>{console.log('File has been sent');});