Skip to content

Instantly share code, notes, and snippets.

@ngohungphuc
Created December 19, 2018 03:14
Show Gist options
  • Save ngohungphuc/9925cf8c5050b55097eb110cea09889b to your computer and use it in GitHub Desktop.
Save ngohungphuc/9925cf8c5050b55097eb110cea09889b to your computer and use it in GitHub Desktop.
JobStorage.Current = new SqlServerStorage(configuration.GetConnectionString("DefaultConnection"));
var sp = services.BuildServiceProvider();
var scheduledEmailService = sp.GetService<IScheduledEmailService>();
RecurringJob.AddOrUpdate("SendSubscriptionEmail", () => scheduledEmailService.SendEmailBackground(), Cron.Minutely);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment