Open saurabhtalele opened 1 year ago
Error: read ECONNRESET at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) { errno: -4077, code: 'ESOCKET', syscall: 'read', command: 'CONN'
how to solve this thanks
I solved this problem by disabling tls
transport: {
host: 'smtp.example.com',
port: 587,
secure: false, // disable tls
auth: {
user: "username",
pass: "password",
}
, },
Error: read ECONNRESET at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) { errno: -4077, code: 'ESOCKET', syscall: 'read', command: 'CONN'
how to solve this thanks