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

前端 未结 8 1899
广开言路
广开言路 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:51

    let transporter = nodeMailer.createTransport({
        host: 'smtp.gmail.com',
        port: 587,
        secure: true,
        auth: {
            user: 'example@gmail.com',
            pass:'your gmail pass'
        }
    });
    

提交回复
热议问题