-1

I've read that post of GSuite Updates google Turning off less secure app access to G Suite accounts where it's commented that after june 2020 the access from LSAs (less secure apps) to GSuite will be limited and I'm not sure that it affects the availability of send emails using smtpClient of c# and only user and password.

I know that it's important to do anyway, but I could plan it later.

Sorry, the explicit question is: That limitation affects the availability to send emails using SmtpClient library of .NET?

Marc
  • 1,359
  • 1
  • 15
  • 39

1 Answers1

1

Yes; as the documentation says; this means programmatic access via username & password.

You will need to use OAuth instead, which SmtpClient does not support.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
  • ok, thanks I could imagine it and I had investigated before about that and I know that. For example: https://www.emailarchitect.net/easendmail/sdk/html/object_oauth.htm – Marc Jan 13 '20 at 15:32