Posts

Showing posts with the label SMTP

Send mail using gmail account from C#

            try             {                 //Creating the object of MailMessage                 MailMessage message = new MailMessage();                 //Creating the object of SmtpClient                 SmtpClient smtp = new SmtpClient();                 //To Emial Address                 message.To.Add(new MailAddress("To Email Address"));                 //From Email Address                 message.From = new MailAddress("From Email Address");                 //It is a subject of your email                 mess...