对angular 6中的Outlook邮件是否有任何邮件集成支持?

时间:2018-10-23 14:30:23

标签: angular user-interface outlook

我需要为我的Web应用程序与邮件进行angular 6集成,通过使用此功能,我需要向要使用该Web应用程序的用户发送电子邮件。

有谁知道该怎么做?

谢谢。

1 个答案:

答案 0 :(得分:0)

我不确定是否要通过Angular6向Outlook发送电子邮件?

但是,我对Angular6并不陌生,但是我发现angular5向Outlook发送电子邮件。

您可以参考以下代码:

  app.post("/sendemail", (req, res) => {
var transporter = nodemailer.createTransport({
    host: "smtp-mail.outlook.com",
    secureConnection: false,
    port: 587,
    tls: {
        chipers: "SSLv3"
    },
    auth: {
        user: "xxx@hotmail.com",
        pass: "xxx"
    }
});

var mailOptions = {
    from: "xxx@hotmail.com",
    to: "xxx@gmail.com",
    subject: "Nodejs Mail",
    text: "this is the email's body text..."
};

transporter.sendMail(mailOptions, function(error, info) {
    if (error) console.log(error);
    else console.log("Message sent successfully: " + info.response);
});
});

有关更多信息,请参考此链接:

Send email with Angular and NodeMailer

Angular 2 – Sending mails from your app.