D
Daniel
I am using the following code:
Dim ObjetoMail As Object
' Create CDO object
Set ObjetoMail = CreateObject("CDO.Message")
' Configura email
ObjetoMail.To = "someoneelsesemailaddress"
ObjetoMail.From = "myemailaddress"
ObjetoMail.Subject = "The subject"
ObjetoMail.HTMLBody = "I'm the body of the <b>message</b>"
' Sending mail
ObjetoMail.Send
' Destroying CDO
Set ObjetoMail = Nothing
And I get the following error 'The "SendUsing"configuration value is invalid
- -2147220960 (80040220)'
1. Could someone provide me with the proper code to work from?
2. How can I get help files for CDO? I have access to the library but no
help to work with, is this normal?
Thank you,
Daniel
Dim ObjetoMail As Object
' Create CDO object
Set ObjetoMail = CreateObject("CDO.Message")
' Configura email
ObjetoMail.To = "someoneelsesemailaddress"
ObjetoMail.From = "myemailaddress"
ObjetoMail.Subject = "The subject"
ObjetoMail.HTMLBody = "I'm the body of the <b>message</b>"
' Sending mail
ObjetoMail.Send
' Destroying CDO
Set ObjetoMail = Nothing
And I get the following error 'The "SendUsing"configuration value is invalid
- -2147220960 (80040220)'
1. Could someone provide me with the proper code to work from?
2. How can I get help files for CDO? I have access to the library but no
help to work with, is this normal?
Thank you,
Daniel