I have a social bookmarking app where users post urls to interesting websites. When users post a new url they can tag it. Users can also follow tags.
I need to create a batch job that runs every day as follows:
FOR EACH User
IF new posts have been created in the last 24 hours for tags that the user follows
THEN send email to user
ELSE skip user
This send/don’t-send email test should be performed for each users until all users have been processed for the daily email. Pretty easy using code. How do I do it using Bubble?
Thanks ind avance!