Link to home
Start Free TrialLog in
Avatar of azcraig
azcraig

asked on

Disable Send Button in Outlook 2010

Is there a way to hide or disable the Send button in an Outlook message window?  We have a replacement Send button (for email encryption) added to the ribbon but our users can't seem to break a 10+ year habit of using the default send button.  Any suggestions?
ASKER CERTIFIED SOLUTION
Avatar of Scott C
Scott C
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Instead of playing with the ribbon which if you do succeed in removing / disabling the button would at best be a hack I suggest you do the following.

Have a Boolean set to False.
 
Hook into the send event of an email and if the Boolean is false cancel the send and tell the user how to send the email properly.

On your new send button set the Boolean to true and send.

This will stop the use of the send button.