I went MS site and go this sample code:
dim objEmail
Set objEmail = CreateObject("CDO.Message"
objEmail.From = "email@aol.com"
objEmail.To = "email@aol.com"
objEmail.Subject = "Atl-dc-01 down"
objEmail.Textbody = "Atl-dc-01 is no longer accessible over the network."
objEmail.Send
I got an error - "ActiveX component can't create object: 'CDO.Meassage'"
Do I need to install anything for this to work?
dim objEmail
Set objEmail = CreateObject("CDO.Message"
objEmail.From = "email@aol.com"
objEmail.To = "email@aol.com"
objEmail.Subject = "Atl-dc-01 down"
objEmail.Textbody = "Atl-dc-01 is no longer accessible over the network."
objEmail.Send
I got an error - "ActiveX component can't create object: 'CDO.Meassage'"
Do I need to install anything for this to work?