Change Sensitivity

D

dthmtlgod

I am attempting to change the sensitity of an incoming message.

Sub CustomMailMessageRule(Item As Outlook.MailItem)

If Item.Sensitivity <> olNormal Then
Set oNewItem = Item.Forward
With oNewItem
.To = "[email protected]"
.Sensitivity = olNormal
.Send
End With
Item.Delete
End If
End Sub


This works, but it won't work on a PRIVATE e-mail. Is there a way to change
this?

Thanks
 
E

Eric Legault [MVP - Outlook]

No; if it's read-only in the UI, it's usually read-only in code.
 
D

dthmtlgod

Thank you. What I did was forward the e-mail as a new mail and I am then
able to send it without a sensitivity flag. It seems to work pretty good
other than the warning about "a program is trying to access e-mail addresses
you have stored in Outlook. Do you want to allow this?"
 
E

Eric Legault [MVP - Outlook]

Top