[.NET]Send email with smtp 30. August 2013 xhinker DotNet Comments (0) Code here: static void SendMail3() { MailMessage message = new MailMessage("from@microsoft.com", "to@microsoft.com", "subject", "test body"); message.To.Add("new@microsoft.com");  ... [More]