Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatically insert email signature into Outlook Meeting Invite

I have been searching the web for a way to do this but no such luck. My goal is to save a meeting agenda template into an email signature which would be inserted into every meeting invite created by me.

Looking for some clues on how to do this?

like image 850
Gordon Avatar asked May 13 '15 13:05

Gordon


People also ask

How do I add an email signature to a meeting in Outlook?

Add signature to meeting request in Outlook In the new created meeting request, please click Insert > Signature, then select a signature you need in the drop-down list. Then the selected signature is added to the body of current meeting request.


2 Answers

Outlook 2010 and newer include the form designer.

File -> Options -> Customize Ribbon, then, in the Right Side pane, click to turn on the Developer Tab.

From there you can design Meeting Request template to your specification.

Then, to use it, you will select:

New -> Meeting Request Using -> (Your Custom Template) from the Outlook Home tab.

like image 173
Lance Avatar answered Sep 18 '22 02:09

Lance


You can handle the ItemSend event of the Application class where you can check out the message class of the outcoming Outlook item and change the message body if required.

Think you will find the Getting Started with VBA in Outlook 2010 article helpful.

like image 43
Eugene Astafiev Avatar answered Sep 18 '22 02:09

Eugene Astafiev