...about the .dll; as far as I have read now, the win XP do not include the cdonts. This w3schools says use cdo;
<%
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(cdoSendUsingMethod) = cdoSendUsingPort
.Item(cdoSMTPServer) = "<enter_mail.server_here>"
.Update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "
[email protected]"
.To = "
[email protected]"
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>
so I am trying that now. But what am I to type in instead of "<enter_mail.server_here>" in the script. I do run my script locally (IIS). Do you know that? What will my SMTP server path be?
Mvh
grstad :~)
Internet has become favorable with that tool...thank you Tim Berners-Lee!