Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konstantinzolotarev/sails-hook-sendgrid
Sails.js SendGrid hook
https://github.com/konstantinzolotarev/sails-hook-sendgrid
Last synced: about 2 months ago
JSON representation
Sails.js SendGrid hook
- Host: GitHub
- URL: https://github.com/konstantinzolotarev/sails-hook-sendgrid
- Owner: konstantinzolotarev
- License: mit
- Created: 2015-11-05T15:58:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-28T18:23:25.000Z (about 9 years ago)
- Last Synced: 2024-04-14T15:04:09.961Z (9 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SendGrid hook for Sails.js
## Configuration
Configuration section for hook.File name: `config/sendgrid.js`
```javascript
module.exports.sendgrid = {
/**
* API Key form Sendgrid
*
* If apiKey used no apiUser/apiPassword needed
* @type {String}
*/
apiKey: 'someSendGridApiKey'/**
* Your SendGrid username.
* You could use apiKey or apiUser + apiPassword
* @type {String}
*/
apiUser: 'username',/**
* SendGrid password
*
* No need if apiKey used
* @type {String}
*/
apiPassword: 'pasword'
};
```