Answers for "nodemailer Error: self signed certificate in certificate chain"

0

nodemail self signed certificate in certificate chain

var transporter = nodemailer.createTransport({
      host: "outmail.abc.co.th", // hostname
      secure: false, // use SSL
      port: 25, // port for secure SMTP
      auth: {
          user: "[email protected]",
          pass: "passwordmail"
      },
      tls: {
          rejectUnauthorized: false
      }
  });
Posted by: Guest on November-30-2020
2

nodemailer Error: self signed certificate in certificate chain

Disable your antivirus software
Posted by: Guest on October-11-2020

Code answers related to "nodemailer Error: self signed certificate in certificate chain"

Browse Popular Code Answers by Language