How to make McAfee cool with sending mail from my workstation?
问题 I am developing an application for a server and it must send mail occasionally for notifications to users. MailMessage mm = new MailMessage(); mm.To.Add("me@domain.net"); mm.From = new MailAddress("you@domain.net"); mm.Subject = "J/K"; mm.Priority = MailPriority.Normal; mm.IsBodyHtml = false; mm.Body = "Greetings and salutations"; SmtpClient client = new SmtpClient("host.address.lcl"); client.Send(mm); If I put the app on an actual server it works fine, but on my workstation, depending upon