Sensitivity Options in email

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.
 
K

Ken Slovak - [MVP - Outlook]

Just customize the toolbars and add that command directly, no code required.
 
G

Guest

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
 
K

Ken Slovak - [MVP - Outlook]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top