Node-RED – get tweets in english or german and send simple emails

if (msg.lang === ‚en‘) {
return msg;
} else {
return null;
}

if (msg.lang === ‚de‘) {
return msg;
} else {
return null;
}

Leave a Reply

You must be logged in to post a comment.