NODEMAIL CERTIFIKASI Mandiri dalam Rantai Sertifikat

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
      }
  });
  
Perfect Partridge