static.email.ses
v0.1.6
Published
A Vercel/Zeit Now AWS SES Based Serverless Utility
Downloads
5
Readme
A Vercel/Zeit Now AWS SES Based Serverless Utility
Usable as path
for static.email client side utility, as described in this post.
const {create} = require('static.email.ses');
module.exports = create({
// email details
to, // the validated email address target
site, // the domain sending emails
sender, // the name used for the "from" email address
// AWS SES details
region, // the AWS SES region
accessKeyId, // the AWS IAM access key id
secretAccessKey, // the AWS IAM secret access key
// check esm/index.js to know more about extra optional details
});