Reputation: 65
I'm making a news bot, and need to forward fresh last posted messages from my main channel to another ones.
How can I do it?
// This method to send message to channel, and after I send message I need to forward it to another channels
bot.telegram.sendMessage("@channel", `SOME TEXT`, { parse_mode: 'Markdown' });
Upvotes: 3
Views: 4183
Reputation: 65
Found forwardMessage method, here it is: https://telegraf.js.org/#/?id=forwardmessage
Upvotes: 1