diff options
author | Heitor Tashiro Sergent <heitortsergent@gmail.com> | 2014-12-02 15:53:09 -0200 |
---|---|---|
committer | Heitor Tashiro Sergent <heitortsergent@gmail.com> | 2014-12-02 15:53:09 -0200 |
commit | c82f4a745ee66747699adba6ec1c92c5c85380d8 (patch) | |
tree | eca81bd0988576723d92135e11c079eb947d576d | |
parent | 535cdbad9087867874475e9c6966f41362a37245 (diff) | |
download | sendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.zip sendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.tar.gz sendgrid-nodejs-c82f4a745ee66747699adba6ec1c92c5c85380d8.tar.bz2 |
Fix setFilters example in README
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -301,9 +301,9 @@ You can set a filter using an object literal. var email = new sendgrid.Email(); email.setFilters({ 'footer': { - 'setting': { + 'settings': { 'enable': 1, - 'text/plain': 'You can haz footers!' + 'text/html': '<strong>You can haz footers!</strong>' } } }); |