NestJS aws 메일 발송하기(feat. mailer, ejs)
NestJS, AWS 메일서버 환경에서 mailer와 ejs를 사용하여 메일 발송을 위해 작업을 하였고, 너무 정보가 많이 없어서 까먹으면 고생할것 같아서 작성합니다. 패키지는 다음과 같이 추가하였습니다. (mailer, ejs, nodemailer) npm install @nestjs-modules/mailer ejs nodemailer --save nest-cli.json { "collection": "@nestjs/schematics", "sourceRoot": "src", "compilerOptions": {// ejs 사용시 필수 추가! "assets": [{"include": "**/*.ejs"}], "watchAssets": true } } 초반에 작업할 떄 ejs 파일이 dist 폴더에 들..