npm install typescript-aws-ses-helper@latest
const logger = new Logger(LogLevel.Trace);
const helper = new SESHelper(logger);
const response = await helper.SendEmailAsync(
'subject',
['toAddresses'],
'fromAddress',
'body',
);
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',
);
If no options are supplied, will default to us-east-1
as the region
Clone the latest and run
npm run prep
to install packages and prep the git hooks