如何使用nodemailer从节点js app发送邮件

时间:2015-10-26 11:42:42

标签: nodemailer

我正在节点js和jquery上创建一个Web应用程序。在这个应用程序中,我使用Nodemailer在使用创建帐户时发送电子邮件。现在我正在使用

var transport = nodemailer.createTransport("SMTP", {
    service: "Gmail",
    auth: {
        user: "abc@gmail.com",
        pass: "abcpws"
    }
});

这很好用。但现在我想更改发件人电子邮件,如abc@me.com。现在我的电子邮件是abc@me.com,它是在(hostgator)上创建的。

如何使用此电子邮件发送邮件。

1 个答案:

答案 0 :(得分:2)

You need to configure the transporter with the SMTP parameters:

var transport = nodemailer.createTransport({
    host      : 'mail.domain.com',
    port      : 26,
    ignoreTLS: true,
    tls :{rejectUnauthorized: false},
    secure :false,
    auth: {
        user: 'mail@domain.com',
        pass: "123",
    }
});