Email automatisé Envoi à l'aide de Node JS Server

let transport = nodemailer.createTransport({
      host: "smtp.gmail.com",
      port: 465,
      secure: true,
      auth: {
        user: process.env.EMAIL_USER,
        pass: process.env.EMAIL_PASS, // here provide the app password you obtained instead of the user password of your google account.
      },
    });

    const mailOptions = {
      from: "[email protected]",
      to: "[email protected]",
      subject: "Hello from nodemailer",
      text: `${message}`,
      html: `<h1>${message}</h1>`,
    };

    const result = await transport.sendMail(mailOptions); 
// as I am using a async function I am using the promise pattern, but you can also use callback pattern.
Bad Bat