java script/html request?

  • Thread starter Thread starter Buffman
  • Start date Start date
B

Buffman

Guest
on my website i need a form that has three boxs (with title) the first and second forum is standrad typing fillout. the third forum needs to have a dropdown menu (that can easily add more choices if i need too) and a submit button that automaticlly emails the first forum box as sender. the second forum box as message, and the third forum box as subject; to the email address ''[email protected]''

i would appriciate if anyone capable of creating this, post the html code here? :) thanks i advance!
 
first of all, wich language do you use?

this problem cannot be solved from html and js. If you use php take a look here : http://www.w3schools.com/PHP/php_ref_mail.asp and here: http://www.php.net/function.mail

about the form: here an example.
the content of the sendmail.php you can find at the prev links

<form id="form1" name="form1" method="get" action="sendmail.php">
Subject: <br/> <input type="text" class="mailform" size="40" value="" id="subject" name="subject"/>
Message: <br/> <textarea class="mailform" id="message" rows="8" cols="38" name="message"/>
<input type="reset" value="Reset form" name="reset"/>
<input type="submit" value="Send" name="submit"/></td>
</form>
 
Back
Top