As you might already thinking, I'm a total noob. I'm trying to get NodeRed to send a Notification to more than on Telegram ID. So I set up a function Node like this:
msg.payload = {
title : 'Türchen geöffnet',
content : 'Post ist da!',
type : 'message',
chatId : 'mychatid,secondchatid',
};
return msg;
But Telegram takes always only the first ID, and I don't get it to work. Someone has a hint for me? Or is it necessary to make a single function for every recipient?
Thank you in advance!
Term