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 = "(e-mail address removed)"
.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
Sub CustomMailMessageRule(Item As Outlook.MailItem)
If Item.Sensitivity <> olNormal Then
Set oNewItem = Item.Forward
With oNewItem
.To = "(e-mail address removed)"
.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