gpt4 book ai didi

zoho - 错误 : Message failed: 553 Relaying disallowed as @ . - NodeMail Zoho

转载 作者:行者123 更新时间:2023-12-04 04:26:06 26 4
gpt4 key购买 nike

在搜索了 6 个多小时试图了解 zoho 发送电子邮件的邮件问题之后!
在我阅读了很多他们的答案但没有帮助的解决方案后,我发现解决方案是您需要拥有 sender选项
在您的 NodeMailer 选项中,与具有相同发件人姓名和发件人电子邮件的电子邮件相同。像这样: from: '"senderNameSameLikeTheZohoOne<emailname@yourwebsite.com>',我的配置:

const transporter = nodemailer.createTransport({
service:'Zoho',
host: 'smtp.zoho.com',
port: 465,
secure: true, // use SSL
auth: {
user: `${process.env.EMAIL_ADDRESS}`,
pass: `${process.env.EMAIL_PASSWORD}`
},
});

const mailOptions = {
from: '"senderNameSameLikeTheZohoOne" <emailname@yourwebsite.com>',
to: `${user.email}`,
subject: '',
text:''
,
};

transporter.sendMail(mailOptions, (err, response) => {
if (err) {
console.error('there was an error: ', err);
res.status(401).json(err);
} else {
// console.log('here is the res: ', response);
res.status(200).json('recovery email sent');
}
});
希望它可以帮助某人

最佳答案

这对我帮助很大。
更具体地说,
我的错误的原因是“from: '”senderNameSameLikeTheZohoOne” emailname@yourwebsite.com' 中缺少 emailname@yourwebsite.com。我立即添加它,它完美地工作。
非常感谢您的澄清

关于zoho - 错误 : Message failed: 553 Relaying disallowed as @ . - NodeMail Zoho,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58738924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com