nodemailer-ses-transport
Advanced tools
Comparing version 1.3.0 to 1.3.1
# 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. |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12893
250
7
1
Updatedaws-sdk@^2.3.11