How to automatically forward, 'Wikiquote: Quote of the day' to your family/friends group using Node Red

Here is how I did it.

I used this in a function node to get it going..

let d = new Date();
const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
let month = months[d.getMonth()];
let today = `https://en.wikiquote.org/wiki/Wikiquote:Quote_of_the_day/${month}_${d.getDate()},_${d.getFullYear()}`;
msg = {payload : today, url : today }
return msg