Author: gslakmal | Posted on: 4/2/2009 8:59:46 PM | Views : 882

 
This is my mail sending code
  // Label4.Text = "";

                            MailMessage msgMail = new MailMessage();

                            msgMail.To = lstTo.SelectedValue.ToString();

                            msgMail.From = txtEmail.Text;

                            msgMail.Subject = txtSubject.Text;

            & ...

Go to the complete details ...