M
Mike D
The code below gives an error.
Object doesn't support this property or method: 'myMail.Importance'
How do I set importance on an email? Everywhere I have looked it looks like
my syntax is right but is it?
Thanks
Mike
Set myMail = CreateObject("CDO.Message")
myMail.From = "(e-mail address removed)"
myMail.To = "(e-mail address removed)"
myMail.Subject = "Test"
myMail.Importance = 2
myMail.HTMLBody = "Test of Importance"
myMail.Send
Set myMail = Nothing
Object doesn't support this property or method: 'myMail.Importance'
How do I set importance on an email? Everywhere I have looked it looks like
my syntax is right but is it?
Thanks
Mike
Set myMail = CreateObject("CDO.Message")
myMail.From = "(e-mail address removed)"
myMail.To = "(e-mail address removed)"
myMail.Subject = "Test"
myMail.Importance = 2
myMail.HTMLBody = "Test of Importance"
myMail.Send
Set myMail = Nothing