I'm trying to sending Email through my web application from Gmail
by using Sustem.Net.Mail.SmtpClient
My code is
string To = "doctor_ofvet@yahoo.com";
string From = "doctorofvet@gmail.com";
string Subject = "The Famous";
string Body = "Hello World";
SmtpClient Client = new SmtpClient();
Client.Send(From, To, Subject, Body);