Merge pull request #511 from matiu/feat/sendgrid

Feat/sendgrid
This commit is contained in:
Matias Alejo Garcia 2016-05-19 13:29:11 -03:00
commit a22a2ff1a2
2 changed files with 22 additions and 10 deletions

View File

@ -74,6 +74,13 @@ var config = {
// testnet: 'https://test-insight.bitpay.com/tx/{{txid}}', // testnet: 'https://test-insight.bitpay.com/tx/{{txid}}',
// }, // },
//}, //},
//
// To use sendgrid:
// var sgTransport = require('nodemail-sendgrid-transport');
// mailer:sgTransport({
// api_user: xxx,
// api_key: xxx,
// });
}; };
module.exports = config; module.exports = config;

View File

@ -36,6 +36,7 @@
"morgan": "*", "morgan": "*",
"mustache": "^2.1.0", "mustache": "^2.1.0",
"nodemailer": "^1.3.4", "nodemailer": "^1.3.4",
"nodemailer-sendgrid-transport": "^0.2.0",
"npmlog": "^0.1.1", "npmlog": "^0.1.1",
"preconditions": "^1.0.7", "preconditions": "^1.0.7",
"read": "^1.0.5", "read": "^1.0.5",
@ -65,14 +66,18 @@
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" "coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}, },
"bitcoreNode": "./bitcorenode", "bitcoreNode": "./bitcorenode",
"contributors": [{ "contributors": [
"name": "Braydon Fuller", {
"email": "braydon@bitpay.com" "name": "Braydon Fuller",
}, { "email": "braydon@bitpay.com"
"name": "Ivan Socolsky", },
"email": "ivan@bitpay.com" {
}, { "name": "Ivan Socolsky",
"name": "Matias Alejo Garcia", "email": "ivan@bitpay.com"
"email": "ematiu@gmail.com" },
}] {
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
]
} }