Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

999
Vistas
No recipients found in nodemailer

I am trying to send a mail using nodemailer. I think i have given all the mailOptions correctly. As i have confirmed that by printing mailOptions to the console.

And i have also checked auth and user. They are correct and well imported.

But still i am getting no recipient defined error. Where is the problem?

enter image description here

Here is the entire sendEmail function

function sendEmail(payload) {
var fromEmail = config.cfg.smtp.fromEmail;

console.log(fromEmail);
var toEmail = payload.to;
var subject = payload.subject;
var content = `<p>Greetings! your order is on the way. Order details are</p>`;
let smtpTransport = nodemailer.createTransport({
  service: "gmail",

  auth: {
    user: config.cfg.smtp.auth.user,
    pass: config.cfg.smtp.auth.pass,
  },
});
// setup email data with unicode symbols
let mailOptions = {
  from: fromEmail, // sender address.  Must be the same as authenticated user if using Gmail.
  to: toEmail, // receiver
  subject: subject, // subject
  html: content, // html body
};

return new Promise(function (resolve, reject) {
  smtpTransport.sendMail({ mailOptions }, function (err, data) {
    console.log(mailOptions)

    if (err) {
      console.log("your mail could not be sent");
      return reject(err);
    }
    resolve(data);
    console.log("Your mail is sent");
  });
});

}

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You are sending your mailOptions inside another object. Try the following instead.

return new Promise(function (resolve, reject) {
  smtpTransport.sendMail(mailOptions, function (err, data) { // mailOptions is already an object.
    console.log(mailOptions)

    if (err) {
      console.log("your mail could not be sent");
      return reject(err);
    }
    resolve(data);
    console.log("Your mail is sent");
  });
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda