Hacer que un formulario llegue a mi e-mail HTML
Estoy creando una página web, esta contiene un formulario y necesito que este me llegue a mi correo hasta ahora tengo este código: (pero sigue sin enviarme) ¿Algún error? Muchas gracias.
<html>
<head>
<tittle><marquee bgcolor="red" behavior="alternate" direction="right">FORMULARIOS</marquee></tittle>
</head>
<body>
<center>
<form>
<FORM ACTION="[email protected]" method="post" enctype="text/plain">
<br><input type="radio" name="hombre">Hombre
<input type="radio" name="hombre">Mujer
<br>
<label for="nombre">Inserte su nombre</label>
<input type="text" placeholder="Escribe tu nombre y apellidos" size="25" name="Nombre" id="nombre">
<br>
<label for="email">Inserte su correo</label>
<input type="email" name="email" id="email" placeholder="Escribe tu email" size="22">
<br>
<br>
<label for="Departamento">Seleccione su departamento</label>
<select name="departamento" size="3" multiple>
<option selected>Elige tu departamento</option>
<option>Ibague</option>
<option>Antioquia</option>
<option>Choco</option>
<option>Valle del cauca</option>
<option>Cumdunamarca</option>
</select>
<br>
<br>
<label for="Edad">Fecha De Nacimiento</label>
<input type="text" placeholder="insetre su fecha de nacimiento" size="25" name="Edad" id="Edad">
<br>
<textarea name="sugerencias" cols="40" rows="6">Danos tu sugerencia</textarea>
<br>
<input type="submit" value="Enviar formulario">
<input type="reset"value="Restaurar">
</form>
</body>
</html>