I think the following problem is related to AOL and not my CDO script, but I wanted to get any input or suggestions from anyone familiar with AOL and CDO message issues.
I'm using the following script, which I'm testing on my local server running SMTP virtual server with port forwarding through my router.
sch = "http://schemas.microsoft.com/cdo/configuration/"
mailbody = "Here is your login password: " & strPassword
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "myserverIPaddress"
.update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "
[email protected]"
.To = rsEmail__strEmail
.Subject = "Dwayne-Epps-Weblog-Password-Request"
.HTMLBody = mailbody
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
Response.Write "<p>" & "Your password has been sent to your email address." & "</p>"
%>
This script runs fine and delivers to my email under a different ISP. It also delivers to Yahoo with no problems. But, AOL emails doesn't recieve the message.
Any input is appreciated. Thanks.
-Dman100-