refactor(notifications): remove secure port

This commit is contained in:
Mauricio Siu 2024-07-20 02:43:33 -06:00
parent 6e78f49c2f
commit 3d348ee762

View File

@ -18,7 +18,6 @@ export const sendEmailNotification = async (
const transporter = nodemailer.createTransport({
host: smtpServer,
port: smtpPort,
secure: smtpPort === 465,
auth: { user: username, pass: password },
});