0

I want to create an Outlook Add-in that doesn't require a task pane, but just performs some automation based on launch events.

Is this possible? The yo office generator has an option to only generate a project with manifest, but there seems to be a lot of additional required stuff missing afterwards.

Should I go with a generated task pane Add-in structure instead and just remove unneeded things from it instead? I am not that experienced in web development, so I am looking for an easy way.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
clel
  • 175
  • 1
  • 3
  • 8

1 Answers1

2

Is this possible?

Yes, it is possible. Task panes are not required for running Office web add-ins.

Should I go with a generated task pane Add-in structure instead and just remove unneeded things from it instead?

You may scaffold any project the yeoman generator suggests and remove all the unnecessary stuff from there. Ready-made generated skeletons are made for your convenience. But don't forget to update the manifest file in such cases, not only delete unnecessary files from the src folder.

You may find the Configure your Outlook add-in for event-based activation guide helpful.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45