Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I add a custom "Send" button to Outlook?

I'm creating a secure message alternative to email for my organization. We exchange confidential patient information with outside treatment providers. To protect privacy, we cannot use email for this purpose.

Rather than force the users here to use whole new inbox, outbox, and authoring interfaces in addition to the Outlook/Exchange email they're used to, is it possible for me to simply add a "Send Secure" button that will direct their message to my custom service rather than the email server?

Microsoft Outlook With New Button http://img38.imageshack.us/img38/5140/newbutton.gif

I've never created an add-in for an Office application. Is it possible to do this? How should I get started?

like image 718
Zack Peterson Avatar asked Jun 15 '09 17:06

Zack Peterson


People also ask

How do I send an email without the Send button in Outlook?

you can manually create and send email out of your default email program (in top menu, use Tools > Send if no button) the Toolbar (for buttons) is set to display in your e-mail program. In Outlook or Outlook Express select View > Toolbars > Standard or Standard Buttons.


2 Answers

You absolutely can. You can use VSTO to do it. Here is an example of adding a context menu item to folders, but adding a button is very similar exercise.

like image 114
JP Alioto Avatar answered Sep 22 '22 20:09

JP Alioto


I know this doesn't answer you question, but I would argue that you should not do this even if you can. It seems, to me, that this approach just makes it easy to accidentally send sensitive information over regular email. It will be easy for users to accidentally click the regular send button because it is right next to the "send secure" button. Even if you put them on opposite sides of the window from each other, the user is quite likely to click regular send out of habit. Unless you can programatically detect that information is sensitive and needs to be sent securely, I think the users should be forced to use a separate application so that they are conscious of the sensitivity of their communication at all times. Even if you could detect sensitive info automatically (I wouldn't think you could easily) it would be better to keep users in the habit of securing their communication.

Clippy http://img132.imageshack.us/img132/1707/clippy.gif

like image 34
A. Levy Avatar answered Sep 19 '22 20:09

A. Levy