Want to auto run (schedule) a rule everyday

Hi,

I want to send an email to users exactly 7 days after they have signed up. Have used sendgrid and so maybe I can configure a rule but how can I have it to run everyday automatically?

Can I configure hangfire to call this rule somehow? Or any other suggestions?

Rules cannot be run on an interval; they only run on authentication events. You can look at running a CRON job on Webtask, scheduled to run every day that will:

  1. Query the Management API for users created on today minus 7 days
  2. Trigger your email to each of the returned users