0

嗨,我正在使用节点邮件程序发送邮件。它可以在没有附件的情况下正常工作。但是每当我提供一些附件时,它都会将默认内容“数据”作为其内容。我应该如何避免这种情况。

我的节点邮件功能是这样的......

function sendMail(toMailId, subject, body) {
    for (var i = 0; i < 1; i++) {
        email.send({
            ssl: true,
            host: DbConfig.mailConfig.host,              
            port: DbConfig.mailConfig.port,             
            domain: DbConfig.mailConfig.domain,        
            to:  DbConfig.mailConfig.to,
            from: DbConfig.mailConfig.from,
            subject: subject,
            reply_to: DbConfig.mailConfig.reply_to,
            body: body,
            authentication: DbConfig.mailConfig.authentication, 
            username: DbConfig.mailConfig.username,            
            password: DbConfig.mailConfig.password,
             attachments: [  
        {   
            filename: "helloworld.txt",
            content : 'data'    
        }   
        ],
           debug: DbConfig.mailConfig.debug                 
        },
  function (err, result) {
      if (err) { console.log(err); }
  });
    }
}

我的问题是当我在收件箱中收到邮件后打开附件时,它只是在正文中显示数据。除此之外,它什么也不显示。当我删除内容时意味着它会引发错误..

我的 Json 将如下所示:

{ 
 "mongodbUrl":"mongodb://USERID:PWD@localhost:27017/DBNAME",
 "mailConfig" :{
             "to":"someone@gmail.com",
             "host": "smtp.gmail.com",            
             "port": 465,                    
             "domain": "[127.0.0.1]",           
             "from":"sender@gmail.com" ,
             "subject":"This is my mail subject,
              "reply_to": "sender@gmail.com",
              "authentication": "login",       
              "username": "sender@gmail.com",         
               "password": "pswd",   
               "debug": true      

}
}

当我发送 PDF 文件意味着它没有打开.. 当发送文本文件意味着它正在使用“内容数据”打开..如何处理这个?

4

1 回答 1

0

我认为您使用的是Marak/node_mailer而不是andris9/Nodemailer。如您在其 github 页面中所见,第一个 repo 本身表示已弃用并指向第二个 repo。

弃用项目以支持 nodemailer

您可以通过以下方式安装Nodemailer

npm install nodemailer

或来自github repo。并且暴露的邮件功能将sendMail代替send.

您可以在此文件夹中看到更多使用电子邮件附加文件的示例。

于 2013-06-20T07:49:01.833 回答