Using CDO and the mail queue

antic

Perch
Hi all,

I need an opinion or two on this... support is no good.. I wish English was better understood around here. :(

I'm trying to use CDO in it's basic form, so it uses the mail queue, not direct SMTP, coz it's quicker. The code I'm using is basically:
Code:
Set objMail = CreateObject("CDO.Message")
objMail.To = "[email protected]"
objMail.From = "[email protected]"
objMail.Subject = "test subject"
objMail.HTMLBody = "<html><body>test</body></html>"
objMail.Send
Set objMail = Nothing
This should normally work, but I'm not receiving any emails. ASPEmail works fine, but I want to use the CDO mail queue. Furthermore, this code seems to work ok on a domain on Win7, but not on Win11.

Asking support about this, the response was, "CDOSYS is already installed on the server." However I kinda knew that. :p

Any ideas?
 
Back
Top