Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending email fails when two factor authentication is on for Gmail

I am using my Gmail account and smtp.gmail.com inside my web application to test and send email. when two factor authentication is ON for my Gmail account, it fails to send the email, however when I turn it off, the web application sends email successfully. Appreciate any kind of advice.

like image 627
user217648 Avatar asked Nov 04 '14 13:11

user217648


People also ask

What happens when two-factor authentication failed?

With the majority of 2FA systems, if the device is lost, stolen or compromised in some way (such as through malware), then the 2FA system becomes compromised. “Two-factor authentication does not authenticate an individual. It authenticates the device. It's what we call in the industry 'identity approximation'.

Does SMTP support 2FA?

Setting up SMTP with 2-Step Verification On Your 123FormBuilder Forms. If you are using 2-step Verification in Gmail, in order to configure your SMTP email server you need to use an app password. An app password is a 16-digit code that gives an external app or device permission to access your Google Account.


2 Answers

Create a custom app in you Gmail security settings.

  1. Log-in into Gmail with your account
  2. Navigate to https://security.google.com/settings/security/apppasswords
  3. In 'select app' choose 'custom', give it an arbitrary name and press generate
  4. It will give you 16 chars token.

Use the token as password in combination with your full Gmail account and two factor authentication will not be required.

Note: The link in step 2 will work only if you have 2-factor-authentication enabled.

like image 115
Stoyan Dimov Avatar answered Oct 04 '22 04:10

Stoyan Dimov


If you are here because of difficulties with the ARQ backup app on Mac OSX, I found the following settings worked for me:

SMTP hostname: smtp.gmail.com SMTP Port: 587 Click: Enable SSL (STARTTLS) Authentication Type: Password (SASL PLAIN) User Name: <full Gmail email address> Password: <Google-generated app password> 

The Google-generated app password is generated as @stoyan-dimov suggests in his answer above, using the following URL:

https://security.google.com/settings/security/apppasswords

Choose to generate a 'Mail' password, and set the device as 'Custom' (I called mine "ARQ".)

Caveat: You must have two-factor authentication enabled on your Google account to get to the above URL.

like image 22
RichTBreak Avatar answered Oct 04 '22 02:10

RichTBreak