Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nodemailer-ses-transport

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodemailer-ses-transport - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

.eslintrc.js

11

CHANGELOG.md
# Changelog
## v1.3.1 2016-05-13
* Added error handler for broken message generator
## v1.3.0 2016-02-18
* Replaces jshint with eslint
* Fix behavior of set option `rateLimit` (yamayo)
## v1.3.0 2015-06-11

@@ -19,2 +28,2 @@

Changed the version scheme to use proper semver instead of 0.x.
Changed the version scheme to use proper semver instead of 0.x.

18

Gruntfile.js

@@ -1,11 +0,9 @@

module.exports = function(grunt) {
'use strict';
'use strict';
module.exports = function (grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: ['src/*.js', 'test/*.js'],
options: {
jshintrc: '.jshintrc'
}
eslint: {
all: ['lib/*.js', 'test/*.js', 'Gruntfile.js', '.eslintrc.js']
},

@@ -24,7 +22,7 @@

// Load the plugin(s)
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-mocha-test');
// Tasks
grunt.registerTask('default', ['jshint', 'mochaTest']);
};
grunt.registerTask('default', ['eslint', 'mochaTest']);
};
{
"name": "nodemailer-ses-transport",
"version": "1.3.0",
"version": "1.3.1",
"description": "SES transport for Nodemailer",
"main": "src/ses-transport.js",
"main": "lib/ses-transport.js",
"scripts": {

@@ -24,12 +24,13 @@ "test": "grunt"

"dependencies": {
"aws-sdk": "^2.1.33"
"aws-sdk": "^2.3.11"
},
"devDependencies": {
"chai": "~3.0.0",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.11.2",
"chai": "~3.5.0",
"grunt": "~1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "~18.1.0",
"grunt-mocha-test": "~0.12.7",
"mocha": "^2.2.5",
"sinon": "^1.15.1"
"mocha": "^2.4.5",
"sinon": "^1.17.4"
}
}
}
# SES transport module for Nodemailer
Applies for [Nodemailer](http://www.nodemailer.com/) v1.x and not for v0.x where transports are built-in.
Applies for [Nodemailer](http://www.nodemailer.com/) v1+ and not for v0.x where transports are built-in.

@@ -33,3 +33,3 @@ ## Usage

* **httpOptions** - A set of options to pass to the low-level AWS HTTP request. See options in the [AWS-SES docs](http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SES.html). Not used if `options.ses` is set.
* **rateLimit** - *optional* Specify the amount of messages that [can be sent in 1 second](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html). For example if you want to send at most 5 messages in a second, set this value to 5. If you do not set it, rate limiting is not applied and messages are sent out immediatelly.
* **rateLimit** - *optional* Specify the amount of messages that [can be sent in 1 second](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html). For example if you want to send at most 5 messages in a second, set this value to 5. If you do not set it, rate limiting is not applied and messages are sent out immediately.

@@ -48,3 +48,3 @@ ### Examples

**Example 2.** Use already existsing AWS SES object instance
**Example 2.** Use already existing AWS SES object instance

@@ -51,0 +51,0 @@ ```javascript

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc