Grazie roby
la configurazione la ho presa dal sito di weppos ma non va lo stesso
il mio dubbio e il server smpt.
io ho fastweb quindi ho messo smpt.fastweb.it come server smpt
ma continua a darmi lo stesso errore.
codice:
<%
Set objMessage = CreateObject("CDO.Message")
Dim objMail, objConfig
Set objMail = CreateObject("CDO.Message")
Set objConfig = Server.CreateObject ("CDO.Configuration")
With objConfig
.Fields("http://schemas.microsoft.com/cdo/configuration/smtp server") ="smtp.fastweb.it"
.Fields("http://schemas.microsoft.com/cdo/configuration/smtp serverport") = 25
.Fields("http://schemas.microsoft.com/cdo/configuration/send using") = 2
.Fields("http://schemas.microsoft.com/cdo/configuration/smtp connectiontimeout") = 60
.Fields.Update
End With
'Assegna le configurazioni
Set objMail.Configuration = objConfig
objMessage.Subject = "Example CDO Message"
objMessage.Sender = "me@my.com"
objMessage.To = "gamecrew2001@yahoo.com"
objMessage.TextBody = "This is some sample message text."
objMessage.Send()
%>
ma niente da fare continua a non funzionare
Grazie