我将向用户的电子邮件地址发送 5 位数字。但它没有被发送。这是下面的代码库。
const mailOptions = {
from: '[email protected]',
to: email,
subject: 'Password Reset Token',
text: `Your password reset token is: ${token}`
};
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
console.log(error);
res.status(500).json({ message: 'Error sending email' });
} else {
console.log('Email sent: ' + info.response);
res.json({ message: 'Token sent to email!' });
}
});
请让我知道我应该解决什么问题。
我看不到任何已发送的电子邮件。请让我知道这些问题。谢谢。