How do I send an e-mail with low priority and normal importance?

Sandra123

New member
Joined
Dec 22, 2010
Messages
1
Programming Experience
10+
Hello,

I used the following code to send an e-mail with low priority.


Dim MailMessage msg = New MailMessage()
msg.Priority = MailPriority.Low

When I look at the message options of the e-mail in outlook I see the following information in the Internet Header

X-Priority: 5
Priority: non-urgent
Importance: low

At the top of the e-mail I also see a message saying
"This message was sent with Low importance"

Is it possible to make the priority different from the importance?

Thanks,
Sandra
 
Back
Top