node.js email doesn't get sent with gmail smtp

前端 未结 8 1901
广开言路
广开言路 2021-01-31 17:55

I\'m trying to send the email gmail smtp but I\'m getting the error:

My email and password is correct I\'m using the nodemailer for sending the mail;

            


        
相关标签:
8条回答
  • 2021-01-31 18:59
    var transporter = nodemailer.createTransport({
      service: 'Gmail',
      auth: {
        user: 'user@gmail.com',
        pass: 'password'
      }
    });
    

    Try the above, and do the following which worked for me.

    Login to https://www.google.com/settings/security/lesssecureapps and TURN ON Access for less secure apps.

    I hope it will work for you too.

    Thank you.

    0 讨论(0)
  • 2021-01-31 18:59
    var transporter = nodemailer.createTransport({
      service: 'Gmail',
      auth: {
        user: 'user@gmail.com',
        pass: 'password'
      }
    });
    

    Try this.

    0 讨论(0)
提交回复
热议问题