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

前端 未结 8 1939
广开言路
广开言路 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 this.

提交回复
热议问题