dpd-email / nodemailer不会附加文件

时间:2015-10-23 19:59:41

标签: javascript node.js email nodemailer deployd

试着去。使用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"} 

]

enter image description here

1 个答案:

答案 0 :(得分:0)

在NodeMailer中,attachmentsattachment个对象的数组。在上面的代码段中,您将attachments设置为对象而不是数组。

直接来自E-mail Message Fields

  

附件 - 附件对象数组

更改

attachments: {
  filename: 'text.bin', 
  content: 'hello world!', 
  contentType: 'text/plain' 
}

attachments: [
  {
    filename: 'text.bin', 
    content: 'hello world!', 
    contentType: 'text/plain' 
  }
]