# static.email.ses **Repository Path**: mirrors_WebReflection/static.email.ses ## Basic Information - **Project Name**: static.email.ses - **Description**: A Zeit Now AWS SES Based Serverless Utility - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # A Vercel/Zeit Now AWS SES Based Serverless Utility Usable as `path` for [static.email](https://github.com/WebReflection/static.email#readme) client side utility, as described in [this post](https://medium.com/@WebReflection/how-to-send-emails-from-static-websites-9a34ceb9416c). ```js 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 }); ```