Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CDO Help

Status
Not open for further replies.

FRANDAZZO

Programmer
Nov 29, 2000
60
US
Hello all. I using CDO to send email out. Now for some reason only certain email addresses can receive the email. For example when I send a email to my work account I get it with no problem. When I send it to my earthlink account I still get it. But when I send it to my aol account I never get it. I tried and tried but for some reason aol does not get it. Also I have some clients that never get the email also. Now the clients addresses and myself(using the aol account) when sending the email out, I never get a undiliverable notice but we never receive the email and if I include my earthlink address or my work email address within the same recipiant list my earthlink account and work account will get the email but my aol account and some clients will not.

Here is some simple code..

<%
set mail = server.createobject(&quot;CDONTS.NEWMAIL&quot;)

mail.to = &quot;whatever@somedomain.com&quot;
mail.from = &quot;From@domain.com&quot;

mail.subject = &quot;Test&quot;

mail.body = &quot;This is a test&quot;

mail.send

If not mail is nothing then set mail = nothing
%>
Thanks ,

Frandazzo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top