I have a problem executing a cron job in node/express application using node-cron library. The application is deployed on Google Cloud App Engine.
I want to send automatic emails every day at 9 AM, but the cron only work from Monday to Friday.
Here is my code :
cron.schedule("0 9 * * *", () => {
sendEmails();
},{
scheduled: true,
timezone: "Europe/Paris"
});
Thanks