Skip to content

Commit

Permalink
feat: add smtp credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
limwa committed Feb 8, 2025
1 parent d58f1d3 commit b1d9e07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/config/mail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ const mailConfig = defineConfig({
* Uncomment the auth block if your SMTP
* server needs authentication
*/
/* auth: {
auth: {
type: 'login',
user: env.get('SMTP_USERNAME'),
pass: env.get('SMTP_PASSWORD'),
}, */
user: env.get('SMTP_USERNAME')!,
pass: env.get('SMTP_PASSWORD')!,
},
}),

/*ses: transports.ses({
Expand Down

0 comments on commit b1d9e07

Please sign in to comment.