Skip to content

Commit

Permalink
fix: smtp config bug (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4l-yup authored Apr 4, 2024
1 parent e563c66 commit c0e3bd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/configs/smtp.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export const smtpConfig = registerAs('smtp', () => ({
use: process.env.SMTP_USE === 'true',
host: process.env.SMTP_HOST,
port: +process.env.SMTP_PORT,
password: process.env.SMTP_USERNAME,
username: process.env.SMTP_PASSWORD,
username: process.env.SMTP_USERNAME,
password: process.env.SMTP_PASSWORD,
sender: process.env.SMTP_SENDER,
baseUrl: process.env.SMTP_BASE_URL,
}));

0 comments on commit c0e3bd3

Please sign in to comment.