Sending online form to my email address...
Context: Aspx page using C#
I have a form. I have validation. I just need to figure out how to write the code to send the form to MY email instead of an address the client types into an input box (txtTo).
Here's the code I have:
MailAddress objMail_fromaddress = new MailAddress(txtFrom.Text);
MailAddress objMail_toaddress = new MailAddress(txtTo.Text);
objMail.From = objMail_fromaddress;
objMail.To.Add(objMail_toaddress);
Can anyone help??