I have found some examples in KBA 810702 but didn't
locate this aspect. The script editor in Frontpage 2002
didn't bring up anything either for m. that I felt was
useable also.
Is this just one of those things that can't be controlled
with script in an .asp page?
objMail.Importance=<number>
Low = 0
Normal = 1
High = 2
Hope this helps.
Nathan
>.
>
Set m = CreateObject("CDO.Message")
m.From = "sen...@sender.com"
m.To = "rece...@anywhere.com"
m.Subject = "Information For You"
m.TextBody = "This is the message." & Chr(13)
m.Send
The above works just fine with cdosys, but I can't
specify a priority for the message and this is what I
would like to do if possible? Does this make more sense
now?
>.
>