Created
October 10, 2012 09:26
-
-
Save kuno/3864338 to your computer and use it in GitHub Desktop.
kue queue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var kue = require('kue'); | |
var jobs = kue.createQueue(); | |
jobs.create('email', { | |
title: 'welcome email for tj' | |
, to: '[email protected]' | |
, template: 'welcome-email' | |
}).save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment