Sto cercando di fare una form di invio dati tramite email, ma nn mi arriva niente all'indirizzo mail.
Ho sbagliato qualcosa?e grazie
<html>
<head>
<title>prova form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form method="post" action="mailto:mioindirizzo@hotmail.com" enctype="application/x-www-form-urlencoded">
<input type="text" name="address" size="30" maxlength="30">
<textarea name="comments" rows="6" cols="50" wrap="off"></textarea>
<input type="submit" value="invia">
<input type="reset" value="cancella">
</form>
</body>
</html>