node-sparkpost
node-sparkpost copied to clipboard
SparkPost client library for Node.js
the example code for updating `recipientLists` seems to be done against an older version. the example code looks something like this: ``` client.recipientLists.update({ id: 'EXISTING_TEST_ID', recipients: [ { address: {...
README mentions usage only with `require` As some projects are moving to using `import` instead, would you please support usage with `import` as well, for node 16.x?
trying to send email inside Promise.all using code: Promise.all(newResult) .then((resultsArray) => { let client = new SparkPost(process.env.EMAIL_SMTP_KEY); let emailDetails = { content: { from: "", subject: "", html: mailBody, },...
When I install this package I see deprecation warnings: ``` npm WARN deprecated [email protected]: this library is no longer supported npm WARN deprecated [email protected]: Please upgrade to version 7 or...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
I get the following exception every time that I try to delete an email that does not exists from the suppressionList: Code: `await client.suppressionList.delete(email)` Exception: `node_modules/request/request.js:1154:10 name: 'SparkPostError', errors: undefined,...
request has been deprecated, see request/request#3142 Please update dependencies. Thanks. for example: https://github.com/wildbit/postmark.js/pull/60
https://github.com/SparkPost/node-sparkpost/blob/master/package.json#L44 but [request is deprecated](https://github.com/request/request/issues/3142). [got](https://github.com/sindresorhus/got#comparison) compares several good choices.
API Update: Added support for recipient validation.
New APIs are available in the Sparkpost documentation which is not available in this project. Adding the support for recipient validation. [Reference] [SparkPost: Recipient Validation](https://developers.sparkpost.com/api/recipient-validation/)