I'm using Telegraf, and I want to send a message at 10 am every day. Here is my code:
const { Telegraf } = require('telegraf')
const bot = new Telegraf('BOT_TOKEN')
//when time is 10 am:
bot.telegram.sendMessage(-100channelId, "Hey!");
bot.launch()
Thanks!