Nodemailer语言 - 电子邮件发送但不接收



我正在用feathersjs构建一个API,我需要发送一封带有附件的电子邮件。

电子邮件似乎已发送,但我什么也没收到。

在我的邮件服务中.js

const nodemailer = require('nodemailer');
const transporter = nodemailer.createTransport({
host: 'smtp.office365.com',
port: 587,
secure: false, // secure:true for port 465, secure:false for port 587
auth: {
user: 'gil.felot@myaccount.com',
pass: 'MyPassWord'
}
});
// Check the connection to the service.
transporter.verify(function(error, success) {
if (error) {
console.log(error);
} else {
console.log('Server is ready to take our messages');
}
});

然后在我的钩子里

hook => {
const file = hook.params.file;
const email = {
from: 'gil.felot@myaccount.com', // sender address
to: 'mygmailaccount@gmail.com', // list of receivers
subject: 'Test Nodemailer', // Subject line
// text: req.body.text, // plaintext body
html: '<b>Hello world 🐴</b>', // html body
attachments: [
{
filename: file.originalname,
contents: new Buffer(file.buffer, 'base64'),
encoding: 'base64'
}
]
};
return hook.app.service('mail').create(email)
.then(function (result) {
console.log('Sent email', result);
}).catch(err => {
console.log(err);
});
}

然后我得到了

服务器已准备好接收我们的消息

已发送的电子邮件

对象 {from: "gil.felot@myaccount.com", to: "mygmailaccount@gmail.com", subject: ">

Test Nodemailer", html: ">Hello world 🐴"}

我不知道如何检查问题来自哪里。

我在创建邮件时缺少 from 部分,而我能够通过谷歌 smtp 发送邮件,但我自己的 smtp 在上述配置中失败

正在与谷歌合作

var mailOptions = { to: email, subject: 'Forgot Password', html: mailData };

也使用我的 smtp:

var mailOptions = { from: 'serverName.com', to: email, subject: 'Forgot Password', html: mailData };

在定义nodemailer配置时考虑添加名称

let transporter = nodemailer.createTransport({
name: 'example.com' // <= Add this
host: 'smtp.example.email',
port: 587,

好的,我想通了!

我需要在mail.class.js中添加transporter.sendMail(),以便在调用hook.app.service('mail').create(email)时触发此操作

工作和附加文件在邮件中为 0 字节,但在我的变量中大小适中。

对我来说,这就是我意识到的; 如果 html 没有 html 标签,则不会发送电子邮件。

此模板将起作用

<html>
<body>
Hello and welcome
</body>
</html>

此模板将不起作用:

<body>
Hello and welcome
</body>

这在发送到 office365 时尤其如此,请参阅此处的其他问题: Nodemailer 不会向 outlook.office365 帐户发送电子邮件

相关内容

  • 没有找到相关文章

最新更新