Search code examples
javascriptnode.jsemailgmailnodemailer

Nodemailer and Gmail after May 30 2022


enter image description here

Sending an email using NodeMailer & Gmail

Google has reported that after May 30 third party apps cannot use username and password for signing in. Does this affect nodemailer. We usually allow less secure APP in the gsuit gmail setting before using it in nodemailer.

    var transporter = nodemailer.createTransport({
        service: 'gmail',
        auth: {
         user: '[email protected]',
         pass: 'yourpassword'
        }
     });

Solution

  • It would help if you generated an app password to use nodemailer.

    1. First, you need to turn on two-factor-authentication.
    2. And then in your manage account go to security.
    3. You can see the app password below two-step verification.
    4. Go to app password select app other and write custom app name (example project name) and click on generate.
    5. You get a password use that password instead of your mail password.