Skip to content

Commit

Permalink
fix: nodemailer secure true
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimduncan committed Jun 5, 2024
1 parent 80dd69d commit c55913a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/lib/email/mailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { env } from '@formbase/env';
const smtpConfig = {
host: env.SMTP_HOST,
port: env.SMTP_PORT,
secure: env.NODE_ENV === 'production',
secure: true,
auth: {
user: env.SMTP_USER,
pass: env.SMTP_PASSWORD,
Expand Down

0 comments on commit c55913a

Please sign in to comment.