We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7172e1 commit a0406b6Copy full SHA for a0406b6
email-api/src/mails/mailer.js
@@ -3,10 +3,10 @@ import { env } from '../config/env.js'
3
import DOMPurify from 'isomorphic-dompurify'; // Esta librería ya trae su propio DOM interno
4
5
const transporter = nodemailer.createTransport({
6
- host: "smtp.gmail.com",
7
- port: 465,
8
- secure: true, // true para puerto 465, false para otros
9
pool: true, // Reutiliza la conexión (más eficiente en Render)
+ host: "smtp.gmail.com",
+ port: 587,
+ secure: false, // true para puerto 465, false para otros
10
family: 4,
11
auth: {
12
user: env.EMAIL,
0 commit comments