How to get server response with netty client?

What is the SMTP server to send email programatically via outlook.com?

  • i tried with with smtp.outlook.com with SSL enabled but i get error saying "The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated" C# code snippet: SmtpClient client = new SmtpClient("smtp.outlook.com", 587);             client.UseDefaultCredentials = false;             client.Credentials = new System.Net.NetworkCredential(fromAddress.Address, fromPassword);             client.DeliveryMethod = SmtpDeliveryMethod.Network;             client.EnableSsl = true;

  • Answer:

Steve Kafka at Quora Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.