typescript-aws-ses-helper
TypeScript icon, indicating that this package has built-in type declarations

2.0.45 • Public • Published

typescript-aws-ses-helper

Typescript helper functions for AWS SES service

CI/CD codecov NPM Version Downloads

Install

npm install typescript-aws-ses-helper@latest

Usage

Default - running in Lambda in your own account

const logger = new Logger(LogLevel.Trace);

const helper = new SESHelper(logger);

const response = await helper.SendEmailAsync(
  'subject',
  ['toAddresses'],
  'fromAddress',
  'body',
);

Running in separate account or not in Lambda

import * as SES from '@aws-sdk/client-ses';

const logger = new Logger(LogLevel.Trace);

const options: SES.SESClientConfig = {
  accessKeyId: '{access_key}',
  secretAccessKey: '{secret_key}',
  region: 'us-east-1',
};

const repository = new SES.SES(options);

const helper = new SESHelper(logger, repository);

const response = await helper.SendEmailAsync(
  'subject',
  ['toAddresses'],
  'fromAddress',
  'body',
);

Notes

If no options are supplied, will default to us-east-1 as the region

Development

Clone the latest and run

npm run prep

to install packages and prep the git hooks

Package Sidebar

Install

npm i typescript-aws-ses-helper

Weekly Downloads

5

Version

2.0.45

License

MIT

Unpacked Size

38.3 kB

Total Files

24

Last publish

Collaborators

  • kbrashears5