Skip to content

Commit

Permalink
fix: mailhog connection (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jlkan authored Feb 7, 2025
1 parent 89f6402 commit 5f3f7bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/api/src/common/emails/adapters/local.adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ export class LocalAdapter extends EmailAdapter {
this.transporter = nodemailer.createTransport({
host,
port,
secure: false,
ignoreTLS: true,
tls: {
rejectUnauthorized: false,
},
auth: undefined,
});
}

Expand Down

0 comments on commit 5f3f7bf

Please sign in to comment.