Skip to content

Instantly share code, notes, and snippets.

@kuno
Created October 10, 2012 09:26
Show Gist options
  • Save kuno/3864338 to your computer and use it in GitHub Desktop.
Save kuno/3864338 to your computer and use it in GitHub Desktop.
kue queue
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