I've built a telegram bot using guidance from this video:
https://www.youtube.com/watch?v=mKSXd_od4Lg&t=348s
Is there any way to edit the sendText function such that I could allow the bot to send a message at a set time?
function sendText(id,text){
var url = telegramUrl + "/sendMessage?chat_id=" + id + "&text=" + text;
var response = UrlFetchApp.fetch(url);
}
Thank you!