diff options
author | Kyle Partridge <partkyle@gmail.com> | 2012-01-11 18:53:27 -0800 |
---|---|---|
committer | Kyle Partridge <partkyle@gmail.com> | 2012-01-11 18:53:27 -0800 |
commit | 25ec9f880452907ebaa92299941de5be1d7a7bc6 (patch) | |
tree | 043ee8b3b6a97cf5ddb1d6131ee7c49f822ec407 /lib/sendgrid.js | |
parent | a6c95e3a6522b6f06ba80ee1424e7495d7373304 (diff) | |
download | sendgrid-nodejs-25ec9f880452907ebaa92299941de5be1d7a7bc6.zip sendgrid-nodejs-25ec9f880452907ebaa92299941de5be1d7a7bc6.tar.gz sendgrid-nodejs-25ec9f880452907ebaa92299941de5be1d7a7bc6.tar.bz2 |
removed the debug flag
Diffstat (limited to 'lib/sendgrid.js')
-rw-r--r-- | lib/sendgrid.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sendgrid.js b/lib/sendgrid.js index e430049..eab1834 100644 --- a/lib/sendgrid.js +++ b/lib/sendgrid.js @@ -61,8 +61,7 @@ SendGrid.prototype.smtp = function(email, callback) { html: email.html, headers: { "x-smtpapi": JSON.stringify(email['x-smtpapi']) - }, - debug:true + } }, function(error, success) { callback.call(self, success, error); }); |