ti ringrazio per la risposta Santino
a questo punto il codice diventa così
codice:
dim sMailServer,objMail,objConf,objFields
sMailServer = "localhost"
Set objMail = Server.CreateObject("CDO.Message")
Set objConf = Server.CreateObject("CDO.Configuration")
Set objFields = objConf.Fields
With objFields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = sMailServer
.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Update
End With
With objMail
Set .Configuration = objConf
.From = REQUEST.FORM("mail")
.To = "info@miosito.com"
.Subject = REQUEST.FORM("oggetto")
.TextBody = REQUEST.FORM("messaggio")
End With
objMail.Send
Set objFields = Nothing
Set objConf = Nothing
Set objMail = Nothing
%>
ma ancora non funziona....il problema può risiedere altrove o stà tutto qui nell'asp?
grazie ancora