fix: 메일 설정정보 수정 및 발송자 연결 #78

Merged
seul merged 4 commits from feature/mail into dev 2025-06-26 18:03:52 +09:00
Showing only changes of commit b1fa0d5fd6 - Show all commits

View File

@ -16,6 +16,7 @@ export async function sendEmail({ to, cc, subject, content }: EmailParams): Prom
port: Number(process.env.SMTP_PORT),
secure: process.env.SMTP_SECURE === 'true',
requireTLS: true,
tls: { rejectUnauthorized: false },
auth: {
user: process.env.SMTP_USER,
pass: process.env.SMTP_PASSWORD,