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!

CDONTS only working with Hotmail!!! HELP!

Status
Not open for further replies.

chassid

MIS
Aug 27, 2000
58
US
All,

I am using CDONTS to email from a form. The problem is the only email that receives the messages sent are hotmail accounts. All other email get stuck in the QUEUE folder in the server under inetpub. Another strange problem is when I send an email to a user under the same server where the ASP is running the message gets sent to the DROP folder in the server. The only way to receive the email through CDONTS is through HOTMAIL.

Does anyone know how to fix this?

Here is a sample of my script, it is very simple:

Set MyCDONTSMail = CreateObject("CDONTS.NewMail")
MyCDONTSMail.From = "dcuper1@hotmail.com"
MyCDONTSMail.To = "cuperstein@usa.net"
MyCDONTSMail.Subject ="ADD Member to site"
MyBody = "Member name '"& first &"' '"& last &"'" & vbCrLf
MyBody = MyBody & "the e-mail is '"& femail &"'" & vbCrLf
MyBody = MyBody & "Ate' mais! do form"
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
set MyCDONTSMail=nothing

Please, if anyone can help me with this one I greatly apreciate it.

Regards,
Daniel Do you know the Chabad Lubavitch Sheliach in your area?
He is waiting for you!
 
I had a very similar problem using CDONTS, you probably won't be satisfied with my solotion though. I just switched to using ASPMailer, a lot easier and reliable than CDONTS.

Wushutwist
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top