Skip to content

Instantly share code, notes, and snippets.

@pofider
Created April 10, 2015 12:36
Show Gist options
  • Save pofider/1f7b5abc80d6f29e5b4e to your computer and use it in GitHub Desktop.
Save pofider/1f7b5abc80d6f29e5b4e to your computer and use it in GitHub Desktop.
Send email notification using jsreport script
function afterRender(done) {
var SendGrid = require('sendgrid');
var sendgrid = new SendGrid('xxx', 'xxx');
sendgrid.send({
to: request.data.email, from: 'jan.blaha@hotmail.com', subject: request.template.name,
html: new Buffer(response.content).toString()
}, function(err, message) {
if (err)
done(err);
done();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment