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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CDO problem

Status
Not open for further replies.

edo74

Technical User
Joined
Oct 29, 2003
Messages
7
Location
SK
Hi,

trying to send an email from NT4.0 Server, SP6 installed with IE5.5 SP2, I receive following error:

ActiveX component can't create object: 'CDO.Message'
Code: 800A01AD

the code:

***
Set objEmail = CreateObject("CDO.Message")
objEmail.From = "me"
objEmail.To = "abc@site.com"
objEmail.Subject = subject
objEmail.Textbody = body
objEmail.Configuration.Fields.Item _
(" = 2
objEmail.Configuration.Fields.Item _
(" = _
"server_name"
objEmail.Configuration.Fields.Item _
(" = 25
objEmail.Configuration.Fields.Update
objEmail.Send
***

do you know what to do with that?
thanx

eduard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top