Ribbon buttons for Outlook Templates

If you often use a template, then you might want a button for it directly in the ribbon.
Unfortunately you cannot assign templates to a button per default.

You can though assign macro’s to a button and we will use this feature to make ribbon buttons for templates.

First you have to make sure that you can see the developer tab – if you can not see it, then you can make it visible with right click on the Ribbon and chose Customize the Ribbon.

outlook_customizeribbon

In the new window, make sure that Developer is marked.

outlook-chosedeveloper

In the Developer tab, chose Macros

outlook_developertab

and add a new macro.

outlook_macro_create

Here you add the following code in the new sub

//Replace c:\outlook_template\MyOutLookTemplate.oft with the path to your own template
Set newItem = Application.CreateItemFromTemplate("c:\outlook_templates\MyOutlookTemplate.oft")
newItem.Display
Set newItem = Nothing

It will look like this:
outlook_macroeditor
Save the macro and the close the window.

Now you have create a macro that can create a mail with the chosen template.
Next thing to do, is adding the macro to the ribbon.

Chose to customize the ribbon (Right click and customize).

Here you then add a macro button

outlook_addmacro

You can here also rename and add different icon to it.
outlook_renamemacro

That’s it now you have your macro button in the ribbon.
outlook_macrobutton

If you are not able to use, then this might be due to the security settings of your outlook.
In the case go to the Developer tab -> Macro security and change the security settings to:

outlook_macrosecuritysettings

 

Be the first to comment

Leave a Reply

Your email address will not be published.


*


This site uses Akismet to reduce spam. Learn how your comment data is processed.