Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
nodemailer-ses-transport
Advanced tools
Applies for Nodemailer v1+ and not for v0.x where transports are built-in.
Install with npm
npm install nodemailer-ses-transport
Require to your script
var nodemailer = require('nodemailer');
var sesTransport = require('nodemailer-ses-transport');
Create a Nodemailer transport object
var transporter = nodemailer.createTransport(sesTransport(options))
Where
options.ses
is set.options.ses
is set.options.ses
is set.options.ses
is set.options.ses
is set.Example 1. Use AWS credentials to set up the sender
var transport = nodemailer.createTransport(sesTransport({
accessKeyId: "AWSACCESSKEY",
secretAccessKey: "AWS/Secret/key",
rateLimit: 5 // do not send more than 5 messages in a second
}));
Example 2. Use already existing AWS SES object instance
var ses = new AWS.SES({accessKeyId:....});
var transport = nodemailer.createTransport(sesTransport({
ses: ses
}));
MIT
FAQs
SES transport for Nodemailer
The npm package nodemailer-ses-transport receives a total of 22,763 weekly downloads. As such, nodemailer-ses-transport popularity was classified as popular.
We found that nodemailer-ses-transport demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.