hi,,
I am using the Mail Class to send email form a form on my aspy page.

There is also a dropdown list in the form with options for Technical Support, Sales, General enquiry.

Can I send the form to different email addresses depending on which option is selected
for example
sales@
support@


        mail.IsBodyHtml = true;         mail.Body = CommentsTextBox.Text;         mail.Subject = "New Enquiry :" + DropDownList1.SelectedValue;         mail.Body = "<html><body>" + "<h2>xxxxxxxxxxxx</h2>" + "<hr>" + "Name :" + "</b>" + "&nbsp;" + FirstNameTextBox.Text + "<br/>&q ...

Go to the complete details ...