Wrox Programmer Forums
|
ASP CDO As of Oct 5, 2005, this forum is now locked. No posts have been deleted. Please use "Classic ASP Professional" at: http://p2p.wrox.com/forum.asp?FORUM_ID=56 for discussions similar to the old ASP Pro Code Clinic or one of the other many remaining ASP and ASP.NET forums here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP CDO section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 21st, 2004, 04:52 PM
Authorized User
 
Join Date: Apr 2004
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Default AOL doesn't recieve CDO sent messge

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-






Similar Threads
Thread Thread Starter Forum Replies Last Post
how to recieve mail from exchange server netsjp General .NET 2 February 4th, 2011 02:27 PM
Regarding AOL Explorer Browser anujrathi ASP.NET 1.0 and 1.1 Professional 0 June 7th, 2006 07:06 AM
i recieve an error in TAPI Application umair.hasan Crystal Reports 0 January 3rd, 2006 04:06 PM
Urgent wat is used to recieve an email qazi_nomi Classic ASP Basics 2 June 13th, 2004 11:57 PM
Detecting AOL browser isheikh Javascript 6 June 4th, 2004 11:36 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.