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:
You can find the settings here: http://windows.microsoft.com/en-US/windows/outlook/send-receive-from-app
Steve Kafka at Quora Visit the source
Related Q & A:
- How do you send a pic via email?Best solution by Yahoo! Answers
- Why can't I send email in my Outlook express?Best solution by Stack Overflow
- What is a pop3 server and a smtp server?Best solution by Yahoo! Answers
- I can't send email via windows mail. all settings for in/out mail are correct.help.Best solution by Yahoo! Answers
- What is my incoming server example(pop.example.com) and also my outgoing server example (smtp.example.com?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.