Is it possible to create a recurring job in Hangfire that executes after a given number of days, say 8.
The nearest I found was to execute a job once in a week -
A more cleaner Solution will be to use Cron.DayInterval(interval).
For your case it will be
RecurringJob.AddOrUpdate("MyJob",() => ScheduledJob(), Cron.DayInterval(8));