Schedule Messages with node

Viewed 26

I am using WhatsApp API to send massive messages to users in nodejs, but I would like to add Schedule messages I don't know how I thought about setTimeout but I don't think that this is the best way to do this. Does anyone have any idea? thanks for your answers

1 Answers

You can use a cron for this. You should create a cron that runs on time you defined time. For example Nodejs Cron is one of those.

Related