[Vuejs]-Nodemailer Connection timeout at SMTPConnection._formatError

0👍

My colleague figured out that it was pooling connection kept open when we should have been closing it.

Changed configuration to:


host: example.host
authMethod: 'PLAIN'
auth:
user: 'username'
pass: 'pass'

and killed pooling since the amount of email is limited.

Leave a comment