1.0.3 • Published 8 years ago

sails-hook-sendgrid v1.0.3

Weekly downloads
3
License
MIT
Repository
-
Last release
8 years ago

SendGrid hook for Sails.js

Configuration

Configuration section for hook.

File name: config/sendgrid.js

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'
};