Ciao ragazzi, ho questo problema con Aruba: semplice form mail
codice:
<html>
<head>
</head>
<body> <h3> Compila la seguente form</h3>
<form action="risposta.asp" method="post">
<label> Nome: </label>
<input type="text" name="nome"> 


<label> Indirizzo e.mail: </label>
<input type="text" name="mail"> 


<textarea name="richiesta" rows="6" cols="23"></textarea>
      <input type="submit" value="Invia dati"></form>
</body>
</html>
ecco il codice della pagina asp
codice:
<%
messaggio = "Nome: " & Request.Form("nome") & chr(13)
messaggio = messaggio & "Email: " & Request.Form("email") & chr(13)
messaggio = messaggio & "Richiesta: " & Request.Form("richiesta")

'Invio email
Set Mail = Server.CreateObject("CDO.Message")
Mail.To = "roberto.taormina@alice.it"
Mail.From = Request.Form("email")
Mail.Subject = "Richiesta informazioni"
Mail.TextBody = messaggio
Mail.Send 
Set Mail = nothing

response.write "<center>

Grazie per avermi richiesto informazioni. Ti risponderemo al più presto</center>"

%>
Risposta del server:
CDO.Message.1 error '8004020d'

At least one of the From or Sender fields is required, and neither was found.

/risposta.asp, line 12

Perchè secondo voi?
Grazie mille come sempre.