Created
September 29, 2021 10:30
-
-
Save EmanuelCampos/70df22c96351feabcc384468c8782818 to your computer and use it in GitHub Desktop.
Mail Provider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nodemailer, { Transporter } from 'nodemailer' | |
import fs from 'fs'; | |
import handlebars from 'handlebars'; | |
import { SES } from 'aws-sdk' | |
import { SESClient, SendEmailCommand } from '@aws-sdk/client-ses'; | |
import { IMailParams, IMailProvider } from '../protocols/IMailProvider'; | |
import { config } from '@config/config'; | |
export class SESMailProvider implements IMailProvider { | |
private client: Transporter; | |
constructor() { | |
this.client = nodemailer.createTransport({ | |
SES: new SES({ | |
apiVersion: "2010-12-01", | |
region: config.AWS_REGION, | |
}) | |
}) | |
} | |
async sendMail({ to, subject, variables, path }: IMailParams): Promise<void> { | |
const templateFileContent = fs.readFileSync(path).toString('utf-8'); | |
const templateParse = handlebars.compile(templateFileContent); | |
const templateHtml = templateParse(variables); | |
await this.client.sendMail({ | |
to, | |
from: "Emanuel Ferreira <[email protected]>", | |
subject, | |
html: templateHtml | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment