diff options
author | scottmotte <scott@scottmotte.com> | 2013-12-18 16:49:49 -0800 |
---|---|---|
committer | scottmotte <scott@scottmotte.com> | 2013-12-18 16:49:49 -0800 |
commit | a8b066022f79cb636a17d30001a781f8686a3447 (patch) | |
tree | 852b7ddb0e38f377d291d9a0ac488efd274dac3f /lib/sendgrid.js | |
parent | 195edbcb55de927120f148f89339b5f800b793a5 (diff) | |
download | sendgrid-nodejs-a8b066022f79cb636a17d30001a781f8686a3447.zip sendgrid-nodejs-a8b066022f79cb636a17d30001a781f8686a3447.tar.gz sendgrid-nodejs-a8b066022f79cb636a17d30001a781f8686a3447.tar.bz2 |
Replaces smtpapi_header with xsmtpapi nodejs module
Diffstat (limited to 'lib/sendgrid.js')
-rw-r--r-- | lib/sendgrid.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sendgrid.js b/lib/sendgrid.js index 96126b9..7b5f59b 100644 --- a/lib/sendgrid.js +++ b/lib/sendgrid.js @@ -4,7 +4,6 @@ var package_json = require('./../package.json'); var _ = require('lodash'); var request = require('request'); var Email = require('./email'); -var SmtpapiHeaders = require('./smtpapi_headers'); var Sendgrid = function(api_user, api_key, options) { if( !(this instanceof Sendgrid) ) { @@ -106,7 +105,6 @@ var Sendgrid = function(api_user, api_key, options) { */ this.version = package_json.version; this.Email = Email; - this.SmtpapiHeaders = SmtpapiHeaders; this.api_user = api_user; this.api_key = api_key; this.web = web; |