Sending periodic email newsletters using nodejs?

I have an app which is run on nodejs as backend. I need to send periodic emails to clients. Lets say the app sends an email to every client every Monday 10am.

I know how to send emails via nodejs. Pretty simple. I also have googled to find libraries like nodemailer which help to achieve this.

Problems: 1) How do I schedule to send these emails automatically. Use a CronJob library for node? node-cron ??

2) How to I handle failure and re-send on failure.

I read about kue which can set up priority queue to run tasks. But it is built on redis db and I dont want to add another db.