Ciao a tutti!
devo fare un sito incd-rom, quindi non posso utilizzare php o asp!
il mio problema è che devo creare un modulo x inviare mail (anche se da cd-rom non ha senso... mah...) a vari indirizzi scelti da un campo select!
il form è:
<table border="0" cellpadding="3" cellspacing="5" width=400 height="250">
<form name="dati" method="post" action="invio.html" enctype="text/plain">
<tr>
<td height="50" align=center><font face="Tahoma" size="2">Nome</font></td>
<td height="50" align=center><input type="Text" name="nome"></td><tr>
<td height="50" align=center><font face="Tahoma" size="2">Cognome</font></td>
<td height="50" align=center><input type="Text" name="cognome"></td><tr>
<td height="50" align=center><font face="Tahoma" size="2">Azienda</font></td>
<td height="50" align=center><input type="Text" name="azienda"></td><tr>
<td height="50" align=center><font face="Tahoma" size="2">Destinatario</font></td>
<td height="50" align=center><select name="destinatario">
<option value="info@xxx.it">Informazioni</option>
<option value="assistenza@xxx.it">Assistenza</option>
<option value="amministrazione@xxx.it">Amministrazione</option>
<option value="ind4@xxx.it">ind4</option>
<option value="ind5@xxx.it">ind5</option>
</select>
</td>
</tr>
<tr><td height="50" align=center><font face="Tahoma" size="2">Messaggio</font></td>
<td height="50" align=center><textarea name="messaggio" cols="25" rows="5"></textarea></td></tr>
</table>
<tr>
<td align=center><input type="submit" name="Invia" value="Invia modulo"></form></td>
</tr>
</table>
come posso fare?
grazie a tutti!