Skip to content

Instantly share code, notes, and snippets.

@theycallmeswift
Created June 23, 2013 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theycallmeswift/5846294 to your computer and use it in GitHub Desktop.
Save theycallmeswift/5846294 to your computer and use it in GitHub Desktop.
var cronJob = require('cron').CronJob;
new cronJob('00 09 * * * *', function(){
var data = Emails.where( { needsSending: true });
data.forEach(function(email) {
sendMessage(email);
});
}, null, true, "America/Los_Angeles");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment