试着去。使用dpd-email的文件(使用nodemailer) 通过nodemailer(https://github.com/andris9/Nodemailer#attachments)
中的示例这只是给了我一个' attachment-1.bin' 0kb大小
尝试使用来自nodemailer网站的不同帖子示例,但结果相同。
使用镀铬邮差
http://localhost:99/email
to:"asa@me.me"
subject: "test"
text: "test"
attachments: [
{filename: "test.tx"', content:"hello world", contentType:"text/plain"}
]
答案 0 :(得分:0)
在NodeMailer中,attachments
是attachment
个对象的数组。在上面的代码段中,您将attachments
设置为对象而不是数组。
附件 - 附件对象数组
更改
attachments: {
filename: 'text.bin',
content: 'hello world!',
contentType: 'text/plain'
}
致
attachments: [
{
filename: 'text.bin',
content: 'hello world!',
contentType: 'text/plain'
}
]