Loopback connector module which allow to send emails via SendGrid
npm install loopback-connector-sendgrid --save
datasources.json
{
"sendgrid": {
"connector": "loopback-connector-sendgrid",
"api_user": '[your username here]'
"api_key": '[your password here]'
}
}
model-config.json
{
"Email": {
"dataSource": "sendgrid",
"public": false
}
}
Configuration in JavaScript
var DataSource = require('loopback-datasource-juggler').DataSource;
var dsSendGrid = new DataSource('loopback-connector-sendgrid', {
api_user: '[your username here]'
api_key: '[your password here]'
});
loopback.Email.attachTo(dsSendGrid);
Basic option same as built in Loopback
loopback.Email.send({
to: "[email protected]",
from: "[email protected]",
subject: "subject",
text: "text message",
html: "html <b>message</b>"
},
function(err, result) {
if(err) {
console.log('Upppss something crash');
return;
}
console.log(result);
});
documented by jsdoc-to-markdown.
MIT License (MIT). All rights not explicitly granted in the license are reserved.
Copyright (c) 2015 John Barry
[email protected] - "MIT License (MIT)", documented by npm-licenses.