summaryrefslogtreecommitdiffstats
path: root/lib/sendgrid.js
diff options
context:
space:
mode:
authorscottmotte <scott@scottmotte.com>2013-12-18 16:49:49 -0800
committerscottmotte <scott@scottmotte.com>2013-12-18 16:49:49 -0800
commita8b066022f79cb636a17d30001a781f8686a3447 (patch)
tree852b7ddb0e38f377d291d9a0ac488efd274dac3f /lib/sendgrid.js
parent195edbcb55de927120f148f89339b5f800b793a5 (diff)
downloadsendgrid-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.js2
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;