Outlook Power Tools



Installation Guide

The installation guide is available here: Installation Guide

Templates

To access your templates, click on the "Outlook Powertools" button in the ribbon.

Open Taskpane Button

You can configure Outlook for faster access to your templates by switching to the classic ribbon.

Classic Ribbon 1 Classic Ribbon 2

Templates files

Import & Export

Import and export templates in the settings tab.

Import Templates Button
The add-in supports .txt, .html, and .htm and .json files.

Multi-template txt files

You can manage multiple templates in a single text file using the following syntax:

# Template 1
Template contents...

# Template 2
Template contents...

Make sure your file has the extension .multi-template.txt so that the add-in can recognize it as a multi-template file.

Creating and Editing Templates

To create a template, click the "+" button at the bottom right corner.

Create Template Button
To edit a template, click the edit icon which appears when you hover your cursor over a template.

Edit Template Button

Placeholders


Dates & Timezone

You can use the datetime function to format dates in your template. For example: Current datetime is:
{datetime(datetime=currentDatetime,format="[YYYY]-[MM]-[DD] | [12h]:[*minute]")}

Alternatively, use a datetime picker to specify arbitrary dates. You can also use a timezone picker to convert the datetime to a different timezone. For example:
{#init
let datetime = openDatetimePicker("Enter a date")
let timezone = openTimezonePicker("Enter the recipient's timezone")
}
Selected datetime is:
{datetime(datetime=datetime,format="[YYYY]-[MM]-[DD] | [12h]:[*minute]")}

Selected date in the recipient's timezone ({timezoneName(timezone)}) is:
{datetime(datetime=datetime, format="[YYYY]-[MM]-[DD] | [12h]:[*minute]", timezone=timezone)}

Date formatting tokens: Date variables: