Validar formulario en html
Publicado por jaime (2 intervenciones) el 14/02/2020 18:06:38
Me gustaria saber si validando un formulario desde html puede llegar al correo electronico usando este codigo
1
2
3
4
5
6
7
8
9
10
11
12
<form action="mailto:direccion@dominio.com" method="post" enctype="text/plain">
Nombre:<br>
<input type="text" name="nombre"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comentario:<br>
<input type="text" name="comentario" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
Valora esta pregunta


0