Skip to content

Instantly share code, notes, and snippets.

@ntotten
Created August 5, 2012 20:02
Show Gist options
  • Select an option

  • Save ntotten/3266943 to your computer and use it in GitHub Desktop.

Select an option

Save ntotten/3266943 to your computer and use it in GitHub Desktop.
Simple Cron Task in Windows Azure Web Sites
app.get('/crontask', function(req, res) {
var sender = new SendGrid.SendGrid('user','key');
sender.send({
to: '[email protected]',
from: '[email protected]',
subject: 'test mail',
text: 'This is a sample email message.'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment