View Single Post
  #1  
Old January 19th 06, 07:20 PM posted to microsoft.public.outlook.program_vba
dthmtlgod
external usenet poster
 
Posts: 3
Default Change Sensitivity

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 = "
.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


Ads