Posted on: 12/22/2013 8:14:30 PM | Views : 929

When the text have value I send to email, and auto reply to user and I want send one for my self to get the content from txtcontent why the secound mail not send?
if (txtMessagesubject.Text != "" && txtContent.Text != "") { MailMessage msg = new MailMessage(); msg.To.Add(new MailAddress(txtEmail.Text)); msg.From = new MailAddress("TheDonkeySkin@gmail.com"); msg.Subject = txtMessagesubject.Text; string body = "thx we are receive you contact"; msg.Body = body; msg.IsBodyHtml = true; msg.Priority = MailPriority.Normal; SmtpClient smtp = new SmtpClient(); System.Net.NetworkCredential myCredential = new System.Net.Netwo ...

Go to the complete details ...