Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kbrashears5/typescript-aws-ses-helper
Typescript AWS SES Helper
https://github.com/kbrashears5/typescript-aws-ses-helper
aws helper javascript lambda ses typescript
Last synced: 2 months ago
JSON representation
Typescript AWS SES Helper
- Host: GitHub
- URL: https://github.com/kbrashears5/typescript-aws-ses-helper
- Owner: kbrashears5
- License: mit
- Created: 2020-05-27T22:59:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T08:25:57.000Z (7 months ago)
- Last Synced: 2024-10-29T15:05:09.634Z (2 months ago)
- Topics: aws, helper, javascript, lambda, ses, typescript
- Language: TypeScript
- Homepage: https://github.com/kbrashears5/typescript-aws-ses-helper#readme
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
typescript-aws-ses-helper
Typescript helper functions for AWS SES service
[![CI/CD](https://github.com/kbrashears5/typescript-aws-ses-helper/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/kbrashears5/typescript-aws-ses-helper/actions/workflows/ci-cd.yml)
[![codecov](https://codecov.io/gh/kbrashears5/typescript-aws-ses-helper/branch/master/graph/badge.svg?token=QOSDQA1FDU)](https://codecov.io/gh/kbrashears5/typescript-aws-ses-helper)
[![NPM Version](https://img.shields.io/npm/v/typescript-aws-ses-helper)](https://img.shields.io/npm/v/typescript-aws-ses-helper)
[![Downloads](https://img.shields.io/npm/dt/typescript-aws-ses-helper)](https://img.shields.io/npm/dt/typescript-aws-ses-helper)## Install
```
npm install typescript-aws-ses-helper@latest
```## Usage
### Default - running in Lambda in your own account
```typescript
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
```typescript
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
npm run prep
```to install packages and prep the git hooks