|
HTML cannot send mails by itself.
The code you posted looks like it was created by a graphical editor or something. You should only have 1 <form> tag, inclosing everything in the form:
<form name="form1" method="post" action="">
<div align="center">Name :
<input type="text" name="textfield">
</div>
<div align="center">Email :
<input type="text" name="textfield2">
</div>
<div align="center">Site Name :
<input type="text" name="textfield3">
etc, etc, till:
</form>
It is the 'action' form attribute that tells the server what script to run on form submission. A PHP script with mail() function could work. Sending mails isnt that straightforward if you have no knowledge of scripting languages, im afraid youre going to have to do a bit more research.
|