// send mail with defined transport object const mailOptions = { from: '"afacode" <lfqdalian@qq.com>', to: 'lfqdalian@sina.com, lfqdalian@outlook.com', subject: 'Hello ✔', // text: 'Hello world?', html: '<b>Hello world? nodemailer</b>', // html body }; const info = await transporter.sendMail(mailOptions);