Error in loading DLL: "cdoConfig.Fields"
am 28.05.2007 12:19:21 von geo.supHere is source code:
<%
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(cdoSendUsingMethod) = cdoSendUsingPort
.Item(cdoSMTPServer) = "smtp.vol.cz"
.Update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "geo.sup@email.cz"
.To = "dedic@arakis.cz"
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>
I get an error message:
Microsoft VBScript runtime error '800a0030'
Error in loading DLL: 'cdoConfig.Fields'
/test2.asp, line 4
Any ideas where is the problem ??? PLS HELP