Sensitivity Options in email

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to place a 'button" on the toolbar in the standard mail form
that when clicked marks a message as confidential.

I know clicking options - sensitivity-confidential should be easy
enough-but.....

Thanks in advance.
 
Just customize the toolbars and add that command directly, no code required.
 
As far as I can see there is not command for confidential- the button for
options exists. I have looked at all the commands in Outlook under Customize
before I posted. Possibly I am missing something....
thanks
 
Sorry about that, you're correct. I could have sworn that was there but only
the importance settings are.

Here's the macro, use Customize to add it as a button, then rename it to
whatever you want.

Public Sub MakeThisConfidential()
Application.ActiveInspector.CurrentItem.Sensitivity = olConfidential
Application.ActiveInspector.CurrentItem.Save
End Sub
 
Back
Top