No description
Find a file
2025-03-12 06:40:18 +00:00
.github/workflows Add release workflow 2025-03-09 21:33:37 +00:00
.editorconfig Add existing project files to Github. 2025-03-09 16:46:32 +00:00
.eslintignore Add existing project files to Github. 2025-03-09 16:46:32 +00:00
.eslintrc Add existing project files to Github. 2025-03-09 16:46:32 +00:00
.gitignore Add existing project files to Github. 2025-03-09 16:46:32 +00:00
.npmrc Add existing project files to Github. 2025-03-09 16:46:32 +00:00
esbuild.config.mjs Add existing project files to Github. 2025-03-09 16:46:32 +00:00
LICENSE Add existing project files to Github. 2025-03-09 16:46:32 +00:00
main.ts Removed old notice for users that is no longer helpful. 2025-03-12 06:40:18 +00:00
manifest.json 0.1.3 2025-03-12 06:38:15 +00:00
package-lock.json 0.1.3 2025-03-12 06:38:15 +00:00
package.json 0.1.3 2025-03-12 06:38:15 +00:00
README.md Add existing project files to Github. 2025-03-09 16:46:32 +00:00
styles.css Add existing project files to Github. 2025-03-09 16:46:32 +00:00
tsconfig.json Ready to release version 0.1.0 2025-03-09 21:24:20 +00:00
version-bump.mjs Add existing project files to Github. 2025-03-09 16:46:32 +00:00
versions.json 0.1.3 2025-03-12 06:38:15 +00:00

Outlook Meeting Notes

This is a plugin for Obsidian that allows you to create notes from Microsoft Outlook meetings, including the meeting details (date/time, subject, recipients, invite message, etc), using a customisable template. The plugin processes .msg files that are dragged-and-dropped from the Outlook desktop app onto the plugin icon in the ribbon in Obsidian

This makes it easy to take notes of meetings in Obsidian.

By processing .msg files, the plugin does not depend on having to run code within Outlook or on Microsoft 365 administrators authorising an app to connect to the Microsoft Graph API.

It relies on the wonderful msgreader, mustache.js, and mustache-validator libraries.

Installation

Search for Outlook Meeting Notes in Community Plugins, either in the Obsidian app or on the Obsidian website.

Usage

Drag and drop a meeting from a calendar in the Outlook Classic desktop app onto the plugin ribbon icon in Obsidian. The plugin will create a note and open it in the current tab.

Outlook Classic creates a .msg file when you drag and drop an appointment or meeting. You can also save a meeting as a .msg file (or save one you have received as an email attachment) and drag and drop the file onto the plugin icon.

The plugin includes a default template that adds the meeting details into the frontmatter (properties) of the created note. It sets the filename of the note to the date, time and subject of the meeting, and creates the note in the root folder of the vault. This can all be customised: see Settings.

Settings

Folder location

The folder in which new notes will be created. If the folder doesn't already exist, it will be created (including any parent folders, if you set it as a subfolder like a/b/c)

Filename pattern

The pattern that will be used to create filenames, using mustache syntax. The default pattern is:

{{#helper_dateFormat}}{{apptStartWhole}}|YYYY-MM-DD HH.mm{{/helper_dateFormat}} {{subject}}

This will produce filenames like 2025-03-09 10.31 Discuss documentation.

The filename pattern can be used to create folders by using the / character. For example:

{{#helper_dateFormat}}{{apptStartWhole}}|YYYY/MM MMMM/YYYY-MM-DD HH.mm{{/helper_dateFormat}} {{subject}}

This would create a folder for the year, a sub-folder for the month and then a file in that sub-folder: 2025/03 March/2025-03-09 10.31 Discuss documentation

If / characters appear in any of the fields from the Outlook meeting, they are replaced.

Invalid character substitute

When using Outlook fields as part of the filename, they may contain invalid characters. This setting allows you to specify what invalid characters should be replaced with. If blank, then invalid characters will be removed. If you specify a space, then any spaces at the end of the filename will be removed.

Note - the invalid characters are: / * " \ < > : | ?

Template

The default template can be customised, or you can write a new template using mustache syntax (see the manual). All .msg fields can be used in a template, and there are also some additional helper functions you can use to format fields.

Default template

The default template for notes is:

---
title: {{subject}}
subtitle: meeting notes
date: {{#helper_dateFormat}}{{apptStartWhole}}|L LT{{/helper_dateFormat}}
meeting: 'true'
meeting-location: {{apptLocation}}
meeting-recipients:
{{#recipients}}
  - {{name}}
{{/recipients}}
meeting-invite: {{body}}
---

Helper functions for templates

To use a helper function in a template, include a section for the function, e.g.:

{{#helper_firstWord}}{{name}}{{/helper_firstWord}}

helper_dateFormat

Formats a date, using moment.js. The format is delimited by a | character.

Examples:

{{#helper_dateFormat}}{{apptStartWhole}}|YYYY-MM-DD HH.mm{{/helper_dateFormat}}

This is like 2025-03-09 16.14.

{{#helper_dateFormat}}{{apptStartWhole}}|L LT{{/helper_dateFormat}}

A date in short format with a time in short format, using the Obsidian application's display language as a basis for the locale to use for the date format (you can change this setting in Settings > General > Language).

In English (GB) display language, this is like 09/03/2025 03:19, but in English display language (which means US), it would be like 03/09/2025 3:19 AM.

helper_firstWord

Returns just the first word. This allows the option of recording just the first names of people who were invited to a meeting:

meeting-recipients:
{{#recipients}}
  - {{#helper_firstWord}}{{name}}{{/helper_firstWord}}
{{/recipients}}