@gravitywelluk/aws
Version:
Library of commonly used AWS wrapper functions to communicate with the AWS SDK
11 lines (10 loc) • 360 B
TypeScript
import * as AWS from "aws-sdk";
/**
* sends a templated email
*
* @param fileName string
* @param body any
* @returns promise with the output
* @memberof AwsSESService
*/
export declare const sendEmail: (sendEmailParams: AWS.SESV2.SendEmailRequest, configOverrides?: AWS.SESV2.ClientConfiguration) => Promise<AWS.SESV2.SendEmailResponse>;