node-ses
node-ses copied to clipboard
An Amazon SES api for nodejs with proper error handling.
Hi, First of all, thanks for creating and maintaining this project. On to my question: can this lib be used within AWS infrastructure (say running in EC2) without explicitly passing...
Iam using this package it is great. But it uses some outdated dependencies. npm WARN deprecated [email protected]: this library is no longer supported npm WARN deprecated [email protected]: request has been...
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
The default nodejs request timeout is quite large (120000ms), adding option to specify your own timeout, alleviates waiting, when doing tests when simulating spotty network environments. Feel free to adjust...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
When amazon returns an error, an [object is used as error](https://github.com/aheckmann/node-ses/blob/master/lib/email.js#L211) Which is the benefit of this approach ?
When we catch non-Amazon-Web-Services errors, we try to present them in the format that AWS does for consistency. AWS returns a human-readable _string_ in the Message field. But here, when...