Skip to content

Commit

Permalink
fix: remove secure from mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementNumericite committed Sep 14, 2023
1 parent 3083913 commit 6688e4f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webapp-next/utils/mailter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ export async function sendMail(
) {
var transportOptions: any = {
host: process.env.NODEMAILER_HOST,
port: process.env.NODEMAILER_PORT,
secure: true
port: process.env.NODEMAILER_PORT
};

if (process.env.NODEMAILER_USER && process.env.NODEMAILER_PASSWORD) {
Expand Down

0 comments on commit 6688e4f

Please sign in to comment.