2

我正在尝试使用 nodemailer 发送邮件。该脚本适用于本地计算机,但我无法在 azure 移动服务中包含 nodemailer。在我的 package.json 中添加了 'nodemailer' : "*" 但仍然无法包含它。

日志说

TypeError:无法读取未定义的属性“原型”

我注释掉了完整的逻辑,但错误仍然存​​在。最后注释掉 var nodemailer = require('nodemailer');

并且错误消失了。

4

1 回答 1

0

要解决此问题,您需要安装旧版本的 nodemailer,以便它可以在 Azure 移动服务上运行。我在 Azure 的 package.json 中添加了 nodemailer 的 0.7.1 版本,然后进行了必要的代码更改,它对我有用。

支持 0.7.1 所需的代码更改非常小,以下是文档中的完整代码:

var nodemailer = require("nodemailer");

// create reusable transport method (opens pool of SMTP connections)
var smtpTransport = nodemailer.createTransport("SMTP",{
    service: "Gmail",
    auth: {
        user: "gmail.user@gmail.com",
        pass: "userpass"
    }
});

// setup e-mail data with unicode symbols
var mailOptions = {
    from: "Fred Foo ✔ <foo@blurdybloop.com>", // sender address
    to: "bar@blurdybloop.com, baz@blurdybloop.com", // list of receivers
    subject: "Hello ✔", // Subject line
    text: "Hello world ✔", // plaintext body
    html: "<b>Hello world ✔&lt;/b>" // html body
}

// send mail with defined transport object
smtpTransport.sendMail(mailOptions, function(error, response){
    if(error){
        console.log(error);
    }else{
        console.log("Message sent: " + response.message);
    }

    // if you don't want to use this transport object anymore, uncomment following line
    //smtpTransport.close(); // shut down the connection pool, no more messages
});

Nodemailer 0.7.1 文档

于 2015-08-30T13:06:54.063 回答