smtpclient

  1. DominusDRR

    Sending mail with Android and C#, it never returns from SmtpServer.Send

    Hi. I have the following code that works perfectly with C# and WPF: String emaailO = "xxxxxxx@outlook.com"; String passwordO = "123456789"; SmtpClient SmtpServer = new SmtpClient("smtp.live.com"); var mail = new MailMessage(); mail.From = new MailAddress(emaailO)...
Back
Top Bottom