1.

Solve : How do I submit form data to an e-mail address??

Answer»

I am trying to submit form data to an e-mail address. Is there a simple WAY for me to do this?
I am somewhat new to html & web design but UNDERSTAND the basics.
Here is my form code, could someone please reply with it properly formatted to receive the input data to an e-mail add. thank you!




















First nameCountry



Last nameZip



E-mailState



Home telephoneCity



Working telephoneAddress



FaxSpeciality



Message













No time for a major re write but would suggest you employ a cgi or php approach ....... you can find a simple formmail script thru a web search but - also many hosts now offer a suitable file for use among their extras.

Your form script may then well start off like ......

Code: [Select]<form ACTION="http://www.yoursite/webformmailer.php" method="post">
<input type="HIDDEN" name="subject" VALUE="Email Message">
<input type="hidden" name="redirect" value="thankyou.htm">


Discussion

No Comment Found