Salve a tutti,
Sono un neo iscritto che ha iniziato a studiare l'HTML per hobby. Mi sono imbattuto in un problema con il seguente codice:
Il contenuto del campo di testo "Name" , "mail" e "comment" non vengono inseriti nel corpo dell'e'mail utilizzando Internet Explorer 9 e 8. Qualcuno può aiutarmi perfavore?codice:<html> <body> <h3>Send e-mail to someone@example.com:</h3> <form action="MAILTO:someone@example.com" method="post" enctype="text/plain"> Name: <input type="text" name="name" value="your name" /> E-mail: <input type="text" name="mail" value="your email" /> Comment: <input type="text" name="comment" value="your comment" size="50" /> <input type="submit" value="Send"> <input type="reset" value="Reset"> </form> </body> </html>
Grazie in anticipo
Simone