Reuiqred Name space " using System.Net.Mail; "
//// (1) Create the MailMessage instance
MailMessage mm = new MailMessage();
////'(2) Assign the MailMessage's properties
mm.From = new MailAddress("info@gmail.com", "Ravi");
mm.To.Add("Example@gmail.com");
mm.Subject = "Any Subject ";
mm.Body = ex.Message.ToString(); //Body of your mail
mm.IsBodyHtml = false;//
////'(3) Create the SmtpClient object
SmtpClient smtp = new SmtpClient("smtp.gmail.com",587);
smtp.EnableSsl = true;
//smtp.DeliveryMethod = SmtpDeliveryMethod.Network; //it may be depend on your network
//'(4) Send the MailMessage (will use the Web.config settings)
smtp.Credentials = new System.Net.NetworkCredential("GmailId", "Passward");
smtp.Send(mm);