Si tu hosting soporta php aqui te dejo un pequeño script; los mensajes de contacto llegan a tu email:
Código HTML:
<table width="343" border="0">
<tr>
<td>Nombre</td>
<td><form name="form1" method="post" action="enviar.php">
<input type="text" name="nombre">
</form></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td height="78">Mensaje</td>
<td><textarea name="msg"></textarea></td>
</tr>
<tr>
<td><input type="submit" name="Submit" value="Enviar"></td>
<td> </td>
</tr>
</table>
enviar.php
Código PHP:
<?php
$mail='[email protected]';
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$msg = $_POST['msg'];
$thank="index.html";
$message = "
nombre:".$nombre."
email:".$email."
msg:".$msg."";
if (mail($mail,"consulta",$message))
Header ("Location: $thank");
?>
Saludos