Link to home
Start Free TrialLog in
Avatar of Brgzaq
Brgzaq

asked on

sending email from a web form without going to Email client

Hi,
I am trying to set up a web form to collect customer inquiry from my website form. The web is hosted by Yahoo so now I use Yahoo form code. The code is an example from Yahoo

If I want to move my hosting from Yahoo to another company, what do I need to change for the code?

Thanks,

<form method=post action="http://us.1.p10.webhosting.yahoo.com/forms?login=stevew11">
<font face="arial, helvetica">
<b>Your first name:</b><br>
<input type="text" name="Name" size="27">
<p>
 
<b>Your URL:</b><br>
<input type="text" name="URL" size="27">
<p>
 
<b>How often do you visit my web site?</b><br>
<input type="radio" name="Visit" value="Daily">Every day<br>
<input type="radio" name="Visit" value="Weekly">Once per week<br>
<input type="radio" name="Visit" value="Monthly">Once per month<br>
<input type="radio" name="Visit" value="Yearly">Once per year<br>
<p>
 
<b>Please add any comments you have below:</b>
</font><br>
<textarea cols="40" rows="10" name="Comments"></textarea>
 
<p><br>
<input type="submit" value="Send">
<input type="reset" value="Clear the form">
 
<!-- Option 1 -->
<input type="hidden" name="subject" value="Survey Results">
 
<!-- Option 2 -->
<input type="hidden" name="required_fields" value="Name,URL">
 
<!-- Option 3
<input type="hidden" name="next_url" value="http://MMMMMMM.com/index.html">
-->
 
</form>

Open in new window

Avatar of Lupich
Lupich
Flag of Canada image

Unfortunately I do not believe it will be possible to use the same code as this line indicates that it might use an included file.

However you can very likely find an alternative and free script on a site such as http://www.phpfreaks.com/ that will give you the same results.
<form method=post action="http://us.1.p10.webhosting.yahoo.com/forms?login=stevew11">

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of isaackhazi
isaackhazi

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
Avatar of Brgzaq
Brgzaq

ASKER

isaackhazi:

Can you give me an example of change for the post action if our web is hosted by godaddy.com?

Thanks,
Avatar of Brgzaq

ASKER

No solved