Link to home
Start Free TrialLog in
Avatar of vulture714
vulture714

asked on

HTML email address

I want to know where I can change where my CONTACT US page form will go to.  I'd like to have the form emailed to XXX@hotmail.com (for example), but don't know how/where to change it.

Here's the Contact Us page HTML:

Avatar of vulture714
vulture714

ASKER

Won't allow me to post HTML code, why?
Avatar of Dave Baldwin
The 'To:' email address is probably in the PHP part of that page, that's where I put it on my forms.  You have to FTP download the source code to find out where the 'To:' email address is set.
DaveBaldwin,

I posted the HTML code on my previous reply, can you let me know specifically where you are talking about?  I'm not good with HTML whatsoever.

much appreciated
DaveBaldwin has pointed out right solution.

Vulture714, you can see this line in your HTML code:
<FORM method=post action="http://www.ates.com/contactus.php" name="feedbackForm" id="feedbackForm" onSubmit="return validateFeedbackForm();">

This is using PHP (server side code) page to process your form submission. You will need to grab that page (contactus.php) from the server and edit the 'To' field of email in ContactUs.php rather than editing the HTML page.

Hope it helps.
Hello Gery128,

I see the <FORM method=post action= but my question is how do I do this?  I understand that I can't change this on the HTML code, but how do I edit the "To" field of email in ContactUs.php ?

What's the easiest?
Hello Vulture714,

If you know PHP programming than its very easy. Even if you don't, first just download that PHP form from server first, (contactus.php) and look for the variable set for 'To' field of email, and change it to update address. Its not that hard to do.

You can download and post that PHP page to get more assistance if you need proper point out.
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial