DEV Community

Discussion on: I built my first SaaS on Next.js

Collapse
 
rain2o profile image
Joel Rainwater

Quirrel handles it for me. I provide a date picker on the frontend for the user, then I send the selected date and time to quirrel with some basic data about the notification.
Then at the specified time quirrel calls my webhook (which I sent as part of the initial request) with the data I sent and I handle the notification.

Basically Quirrel handles the scheduling and my app handles WHAT to do when the scheduled event is triggered. Their documentation is pretty simple and straight forward. And the author of Quirrel answered a question I had so he seems pretty responsive.

Hope that helps!

Collapse
 
hamodey85 profile image
Mohammed Almajid

Thanks for sharing bro