Can you make an E-mail form without using PHP?

  • Thread starter Thread starter billrussell42
  • Start date Start date
I'm making a website and want an E-mail form in it. However the place I'm hosting it at for free dosen't support PHP on a free account. I don't really want to upgrade my plan just yet. Any Ideas?
 
Use JSP :P Or give this a try. The main thing is the info in the form tag

<form
action="mailto:[email protected]"
method="POST"
enctype="multipart/form-data"
name="EmailTestForm">

Your Name:<br>
<input type="text" size="20" name="VisitorName"><br><br>

Your Comment:<br>
<textarea name="VisitorComment" rows="4" cols="20">
</textarea><br><br>

<input type="submit" value="Email This Form">

</form>
 
Back
Top