Nodemailer is not able send mail using gmail

前端 未结 3 1071
盖世英雄少女心
盖世英雄少女心 2021-01-12 22:08

I am trying to send email through nodemailer but is not able to send email and showing following error.

{ [Error: Invalid login]
  code: \'E         


        
3条回答
  •  温柔的废话
    2021-01-12 22:35

    var transporter = nodemailer.createTransport({
        service: 'Gmail',
        auth: {
           user: 'username',
           pass: 'password'
        }
    });
    

    Instead of username = enter your valid email id and password = your password

    again an alert shows to your Gmail from google like

    (Google will continue to block sign-in attempts from the app you're using because it has known security problems or is out of date. You can continue to use this app by allowing access to less secure apps, but this may leave your account vulnerable. )

    you need to allow the access from other mailer

    then it generates the response

提交回复
热议问题