简体   繁体   中英

How to send email using angular 9

The following code send email from server side. How to I use that code in Angular 9 application. Could you please help some one for this.

    var nodemailer = require('nodemailer');

    var transporter = nodemailer.createTransport({
    service: 'gmail',
    auth: {
    user: 'test@test.com',
    pass: 'xxxx'
    }
    });

    var mailOptions = {
    from: 'test@test.com',
    to: 'test@test.com',
    subject: 'Sending Email using Node.js',
    text: `Hi, thank you for your nice Node.js Email.`
    };

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

Probably, the above code will works i the Angular application, but the big problem doing that, is you will have exposed mail transport credentials in your front app. As mentioned before, best solution is create a simple API that send the email on server side.

As far as I know you cant. You have to use a server.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM