728x90
SMALL
aws ses 오류
-
[ NestJS ] AWS SES 적용 오류Topic/Node.js | server 2023. 7. 29. 11:47
*잘못된 AccessKeyId로 접근했을 때 *잘못된 AccessKeyId로 접근했을 때 올바른 AccessKeyId로 요청할 때랑 잘못된 AccessKeyId로 요청할 때 에러가 다른 걸로 보아 코드 상에 문제라기보다 설정 방법이나 호스트 단에서 에러가 났을거라고 생각이 들어 자료를 찾아보았다. AWS SES를 이용하는 것중에 aws-sdk에 있는 ses를 사용해 transporter를 적용해도 되지만 근본적인 서비스인 nodemailer의 example을 보고 그대로 해보았다. import { BadRequestException, Injectable } from '@nestjs/common'; import * as nodemailer from 'nodemailer'; @Injectable() expo..