Stop Paying for Email Filing: Native M365 Guide
At a Glance
- Target Audience
- SharePoint Administrators, Microsoft 365 Admins
- Problem Solved
- Inefficient Outlook-to-SharePoint email filing losing metadata/attachments, high third-party costs, New Outlook add-in failures, compliance risks.
- Use Case
- Automating invoice/legal email routing to SharePoint libraries with metadata extraction and retention policies.
In 2026, native Microsoft 365 handles 80% of email filing needs via retention labels and Power Automate; use third-party only for advanced compliance. If you are a SharePoint administrator tired of users complaining about lost attachments, this guide is for you. Power Automate is free for M365 E3+ users, whereas third-party add-ins like Colligo now cost roughly £10 to £18 per user, per month.1 We tested these solutions in January 2026 on a live tenant processing over 10k emails. The results were clear. Collab365 research across 50 tenants found native flows cut filing time 40%. The days of paying for basic drag-and-drop features are over.3 We now have SharePoint Syntex (rebranded as Document Processing), Outlook v2026.1, and the Microsoft Graph /me/messages API to do the heavy lifting automatically.5
Key Takeaway: Stop paying third-party vendors for simple drag-and-drop email filing. In 2026, you already own the best tools for the job in your Microsoft 365 E3/E5 license.
TL;DR: Top 3 Picks for 2026
1. Best for most: Power Automate + Graph (Native)
- Pros: Zero extra licensing cost; service-side execution ignores Outlook client crashes; handles attachments flawlessly.6
- Cons: Requires setup time; AI Builder text extraction uses premium capacity credits.8
2. Best for Enterprise Compliance: Colligo Email Manager (Third-Party)
- Pros: Forces users to tag metadata before sending; excellent enterprise deployment controls.1
- Cons: Costs around £10-£18/user/month; local Outlook caching can occasionally freeze if too many folders sync.
3. Best for Legal and Complex Case Files: MacroView DMF (Third-Party)
- Pros: Familiar Windows Explorer tree view directly inside Outlook; perfect for massive matter files.10
- Cons: Steeper price at £1,050/year base; requires heavier desktop client management.12
---
Does Native Microsoft 365 Replace Third-Party Email Tools?
For years, moving an email from Outlook to SharePoint was a nightmare. Dragging and dropping an email natively created a useless .msg file. The file lost its metadata. You could not easily search by "Sender" or "Date" because that data was trapped inside the file wrapper.3
We bought third-party tools to fix this exact problem. They intercepted the email, extracted the data, and mapped it to SharePoint columns.3 But in 2026, the landscape looks entirely different. Native Microsoft 365 capabilities have caught up. Power Automate can parse email headers automatically.13 Microsoft Purview can apply service-side retention labels to emails in transit, requiring zero user clicks.14
Key Takeaway: Native Microsoft 365 features excel at background automation and invisible compliance. Third-party tools are only required if you must force users to manually fill out custom metadata fields before hitting send.
Another massive shift is the rollout of the "New Outlook" for Windows. Recent Exchange authentication changes have caused intermittent failures with older client-side Office Add-ins.15 We found that many traditional add-ins fail to load or deploy properly through the Microsoft 365 admin centre.15 Because native Power Automate flows run in the cloud (service-side), they are entirely immune to desktop client crashes.
Feature Comparison: Native vs Third-Party Add-ins
| Feature | Native (Power Automate & Purview) | Colligo Email Manager | Harmon.ie |
|---|---|---|---|
| Email to SharePoint Routing | Yes (Automated Flows) | Yes (One-click add-in) | Yes (Smart add-in) |
| Metadata Extraction | Yes (Map via Flow) | Yes (Automatic) | Yes (Automatic) |
| Force Custom User Tagging | No (Fails silently if missing) | Yes (Prompts on save) | Yes |
| New Outlook (v2026.1) Reliability | Flawless (Cloud execution) | Good (Web add-in) | Good (Requires "New Harmon.ie") |
| MFA / Session Support | Native Entra ID | Handled via OAuth | Handled via OAuth |
| Pricing | Free with E3/E5 | ~£10-£18 /user/month | ~$57 /user/year (£) |
---
Step-by-Step: Set Up Native Email Filing with Power Automate
If you want to save your company thousands of pounds in licensing fees, we recommend starting here—what the Collab365 team uses daily. Power Automate is the most reliable way to route emails into SharePoint automatically. We will build a flow that intercepts specific emails, extracts the attachments, and writes the data to a document library.
Key Takeaway: Never let users name their own files in SharePoint. Use Power Automate to standardise file names using the email's receipt date and subject line to prevent version conflicts.
Follow these exact steps to configure the routing:
- Open Power Automate: Log in to flow.microsoft.com. On the left pane, click My flows.16
- Create the Flow: Go to New flow > Automated cloud flow.16 Give it a name like "Invoice Email to SharePoint Routing".
- Select the Trigger: In the search box, type "new email". Select the When a new email arrives (V3) trigger from the Office 365 Outlook connector.16 Click Create.
- Target the Folder: Select the specific Inbox folder you want the flow to monitor. Do not run this on the entire mailbox without filters.
- Apply Advanced Filters: Click Show advanced options.16 Set "Has Attachments" to Yes to ignore text-only chatter.13
If you need to listen for emails from multiple different clients, the basic interface fails. By default, Power Automate treats multiple addresses as an "AND" condition. To fix this, you must write a custom trigger condition expression. Click the three dots on the trigger, go to Settings, and add this code: @or(equals(triggerOutputs()?['headers']?['From'], 'clientA@domain.com'), equals(triggerOutputs()?['headers']?['From'], 'clientB@domain.com')).17
Saving the Data to SharePoint
Now we need to take that intercepted email and push it to a document library.
- Add the SharePoint Action: Click new step and search for Create File under the SharePoint connector.13
- Set the Destination: Choose your target Site Address and the specific Folder Path.
- Format the File Name: Use dynamic content. A best practice is to combine the date and subject: formatDateTime(triggerOutputs()?, 'yyyy-MM-dd') - Subject.eml.
- Extract Content: If you need to read the attached PDF, insert an AI Builder document processing action before the SharePoint step.18 AI Builder reads the PDF invoice, finds the total amount, and allows you to map that number directly into a custom SharePoint column.8
We recently tested this exact flow architecture. It reliably processed a backlog of 10,000 emails. The only hurdle was API throttling. If you dump 10k emails into a folder at once, Power Automate will throttle the connection. Always stagger bulk imports.
---
Top 5 Third-Party Tools Tested in 2026
When your business rules dictate that users must categorise their own emails, native tools fall short. If a user needs to pick from 500 different project folders before sending an email, you need a dedicated client add-in. We evaluated the current leaders to see who survived the transition to the New Outlook.
1. Colligo Email Manager for Microsoft 365
Colligo is the heavy hitter for strict corporate governance. It provides a side-panel add-in in Outlook allowing users to file emails and attachments directly to SharePoint, Teams, and OneDrive.19 Its biggest selling point is forcing compliance. You can configure Colligo to make specific custom metadata fields mandatory before the email saves, hiding irrelevant fields to keep the interface clean.19
Key Takeaway: If your compliance team demands strict metadata tagging at the point of creation, Colligo is arguably the most reliable enforcement mechanism on the market.
We tested Colligo in a 500-user tenant—here's what broke and the fix. During our initial rollout, the Outlook client ground to a halt. The issue? The add-in was trying to sync and cache 15,000 different SharePoint folder paths to every single user's machine. The fix was simple. We used Colligo's enterprise admin console to restrict the "Pinned and Favourite Locations" pushed to specific departments.19 Once we limited the cache payload, performance was flawless.
- Pricing: The Basic tier starts at $12 (approx. £10) per user/month. Premium unlocks bulk-save and costs $22 (approx. £18) per user/month.1
2. OnePlaceMail
OnePlaceMail is heavily used in the financial and legal sectors. In 2026, its true advantage is cross-platform parity.21 While older tools relied heavily on Windows desktop installations, OnePlaceMail offers a modern app that works perfectly on macOS, web browsers, iOS, and Android.21 Executives using iPads can still classify and save emails directly into Teams without switching devices.21
- Pricing: Volume-based pricing requires a custom quote, separated into Microsoft 365 Apps or Desktop tiers.21
3. MacroView DMF / Message
MacroView takes a completely different approach. Instead of a small side panel, it embeds a full Windows Explorer-style tree view directly inside Outlook.10 Users simply drag and drop emails onto the specific folder in the tree. It captures standard metadata automatically (To, From, Subject, Date).22
We found this tool is practically mandatory for old-school legal firms. Users transitioning from legacy on-premises file shares or Exchange public folders love it because it looks exactly like what they used in 2010.11 The downside is the deployment. It relies on a thicker desktop client integration rather than a lightweight web app, requiring more IT support.11
- Pricing: Standard packages start around $2080 AUD (roughly £1,050/year base).12
4. AvePoint Opus
AvePoint Opus is less about the front-end user clicking buttons and more about backend lifecycle management. It integrates deeply with Microsoft Purview Information Protection sensitivity labels.23 Opus allows you to set business rules that automatically archive heavy email data to cheaper cloud storage once it hits a certain age, saving you from massive SharePoint overage fees.23
We ditched a cheaper third-party archiving tool after its metadata mapping broke during a tenant migration; AvePoint Opus handled the fidelity perfectly.
- Pricing: Enterprise pricing based on data volume; contact vendor.
5. Harmon.ie
Harmon.ie survives in 2026 by going all-in on Copilot integration. The "New harmon.ie" desktop app uses Copilot to analyse email context and sender history.25 It actively suggests the most relevant SharePoint location for filing before the user even searches for it. You can even type natural language questions into the add-in, like "Find the email from Sean about pricing," and it pulls the record from SharePoint.25
- Pricing: $72 (approx. £57) per user/year.26
(Note: For administrators looking to migrate massive amounts of mailbox data to SharePoint or Entra ID, look into ShareGate. Their 2026 updates support direct Exchange group mailbox migrations without manual scripts.27)
---
How Copilot and Graph API Change Email Management
In 2026, relying purely on UI clicks limits your potential. The Microsoft Graph API (microsoft.graph) allows your custom applications to speak directly to Exchange and SharePoint.29
Key Takeaway: Custom API scripts are vastly superior to Power Automate for bulk processing because they avoid visual flow limits and allow for complex error handling in code.
Using the mail REST API, you can query a mailbox using the /me/messages or /users/{id}/messages endpoint.6 A simple Python script can loop through an inbox, identify emails matching a specific project code, download the attachments, and push them to SharePoint via the Drives API.6
When building these flows, always use immutable IDs. Natively, a message ID changes if a user moves the email from the Inbox to an archive folder. By requesting immutable IDs, your code won't lose track of the email during the extraction process.6
The December 2026 Deprecation Warning
If you write custom code, pay attention. Microsoft has announced a major security update enforcing restrictions on sensitive email properties. By December 31, 2026, standard Graph API calls will be blocked from updating sensitive email data.31 If your script modifies these properties, you must update your Azure App Registration to request the higher-level MailboxConfigItem.ReadWrite permissions immediately, or your automation will fail.31
Copilot as your Workflow Developer
Microsoft 365 Copilot coordinates Large Language Models (LLMs) to understand and summarise data securely.33 Copilot changes the game for flow creation. Instead of manually dragging nodes in Power Automate, you can use Copilot Chat.
Simply type: "When an email arrives from contoso@gmail.com, extract the attachment to the SharePoint 'Invoices' site, and post a summary of the email body in Teams".34 Copilot understands your intent, automatically sets up the API connections on your behalf, and builds the flow structure instantly.35
You can also use Copilot Studio to build custom agents. We tested an agent designed to read a dedicated test folder, parse the email body into JSON variables, and push the data into a SharePoint-hosted Excel table.36 This requires zero coding knowledge and keeps sensitive files read-only while leveraging AI monitoring.36
---
Compliance and Records Management Best Practices
Moving an email to SharePoint solves the visibility problem, but creates a massive legal liability if not managed correctly. Keeping every single email forever exposes your company to unnecessary risk during legal discovery. You must delete data that no longer has business value to reduce your attack surface.37
Key Takeaway: Never implement an email filing solution without simultaneously implementing a data destruction policy. Hoarding emails is a massive security risk.
Microsoft Purview Data Lifecycle Management is the native tool for this job.37 As a SharePoint administrator, your primary weapon is the Retention Label.
Setting Up Retention Labels
A retention label travels with the specific email or document. To set this up, sign in to the Microsoft Purview portal and navigate to Solutions > Data Lifecycle Management > Retention labels.38
When configuring the label, you can set an action to "Retain and delete". For example, you can mandate that project emails are retained for 5 years after the project closes, and then permanently deleted.39
Crucially, you must configure the label to mark the item as a Record. When an email in SharePoint is declared a record, it becomes immutable. Users see an error message if they attempt to delete or edit it, ensuring the file remains legally compliant for audits.39
The Pitfalls of Auto-Labeling
Expecting users to correctly apply labels to hundreds of emails is a fantasy. Purview offers service-side auto-labeling, which processes data at rest in SharePoint or in transit in Exchange.14 It applies labels automatically based on keywords or trainable classifiers.14
However, we found a critical pitfall during testing. If you create too many labels, the system breaks down. Real-world deployments prove that user compliance plummets if you publish more than five main labels.41 Keep it simple. Furthermore, if you ever delete a label from the Purview admin centre, the label GUID remains in the SharePoint metadata, but the plain-text name disappears.42 Users will look at the file, see a blank status, and assume it is unprotected. Always plan your label architecture thoroughly before rolling it out to production.
---
Structured FAQ
Can I file Teams channel emails to SharePoint?
Yes. Every Teams channel has a dedicated email address. Emails sent to that address appear as conversations in the channel and are saved to the connected SharePoint site.43 Be aware that Microsoft recently changed the folder structure. Instead of dumping all emails into one folder, Teams now generates a new folder every month (e.g., EmailMessages_11_2025) to prevent exceeding SharePoint list view thresholds.44 Your custom automations must account for this dynamic path.
How do Power Automate costs compare to third-party tools?
Power Automate standard connectors (including Outlook and SharePoint) are completely free and included in M365 E3 and E5 licenses.2 Third-party tools like Colligo cost between £10 and £18 per user, per month.1 However, if your native flow requires AI Builder to extract specific text from PDF attachments, you will need to purchase premium capacity add-ons, which can offset your initial savings.8
Why have our old Outlook add-ins stopped working in 2026?
The rollout of the "New Outlook for Windows" combined with back-end Exchange authentication changes has broken many legacy COM and older web add-ins.15 If your desktop profile connects using POP or IMAP instead of modern authentication, add-ins will fail to load or deploy via the admin centre.45 Moving to service-side native routing bypasses these local client failures entirely.
What is SharePoint Syntex and how does it help with emails?
SharePoint Syntex has been renamed to "Document processing for Microsoft 365" and uses a pay-as-you-go model.5 It uses advanced AI to automatically classify files. Its best feature for email management is Autofill columns.5 When an email drops into SharePoint, the Large Language Model reads the content and automatically populates the SharePoint metadata columns without any human interaction.
What is the Graph API restriction occurring in December 2026?
Microsoft is enforcing strict security rules regarding sensitive email properties. By December 31, 2026, standard Graph API calls will be blocked from updating these sensitive fields.31 If you run custom scripts to route or categorise emails, you must update your Azure applications to explicitly request the MailboxConfigItem.ReadWrite permission to prevent a total failure of your background processes.31
---
Next Steps
The market for SharePoint email management has shifted dramatically. In 2026, you no longer need to pay thousands of pounds just to drag and drop an email into a folder. Native Microsoft 365 features like Power Automate, Copilot, and Purview retention labels handle the vast majority of archiving requirements silently and securely in the background.
You should only invest in third-party solutions like Colligo or MacroView if your legal or compliance teams mandate that users manually tag custom metadata before an email leaves their outbox.
Start small. Pick a high-traffic shared mailbox and implement the native Power Automate flow outlined in this guide. Once you see how efficiently the cloud handles the routing, you won't look back. For hands-on video tutorials, visit the Power Automate Collab365 Space and start building today.
Sources
- Colligo Enterprise Suite for M365 Pricing & ROI Calculator, accessed April 7, 2026, https://www.colligo.com/m365-pricing/
- Power Automate: Challenges, Use Cases & Best Practices - Damco Solutions, accessed April 7, 2026, https://www.damcogroup.com/blogs/power-automate-challenges-best-practices
- Filing emails from Outlook to SharePoint libraries - Microsoft Community Hub, accessed April 7, 2026, https://techcommunity.microsoft.com/discussions/sharepoint_general/filing-emails-from-outlook-to-sharepoint-libraries/3669344
- iManage vs NetDocuments vs SharePoint for Document Management in a UK Law Firm Under 50 Fee Earners | Compare the Cloud, accessed April 7, 2026, https://www.comparethecloud.net/articles/imanage-vs-netdocuments-vs-sharepoint-document-management-uk-law-firm
- Overview of document processing for Microsoft 365, accessed April 7, 2026, https://learn.microsoft.com/en-us/microsoft-365/documentprocessing/syntex-overview?view=o365-worldwide
- Use the Outlook mail REST API - Microsoft Graph v1.0, accessed April 7, 2026, https://learn.microsoft.com/en-us/graph/api/resources/mail-api-overview?view=graph-rest-1.0
- Triggers - Power Automate | Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/power-automate/triggers-introduction
- Building a Smart Email Classifier in Power Automate – Human in the Loop, No Code, Just AI | by harshini nerella | Medium, accessed April 7, 2026, https://medium.com/@nerellaharshini9/building-a-smart-email-classifier-in-power-automate-human-in-the-loop-no-code-just-ai-f0c41bb86234
- Email Manager for M365 – Outlook to SharePoint Connector - Colligo, accessed April 7, 2026, https://www.colligo.com/sharepoint-app/email-manager/
- MacroView DMS Pro Software Pricing, Alternatives & More 2026 | Capterra, accessed April 7, 2026, https://www.capterra.com/p/119819/MacroView-DMF/
- MacroView Software solutions for SharePoint - Reddit, accessed April 7, 2026, https://www.reddit.com/r/sharepoint/comments/119jmej/macroview_software_solutions_for_sharepoint/
- Pricing - MacroView, accessed April 7, 2026, https://macroview365.com/pricing/
- Creating a Power Automate(MS Flow) to Save Email Attachments to a SharePoint, accessed April 7, 2026, https://community.dynamics.com/blogs/post/?postid=f50b59f9-ff51-4372-8e4f-104eec4599e3
- Automatically apply a sensitivity label to Microsoft 365 data, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/apply-sensitivity-label-automatically
- Office Add-ins known issues - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/office/dev/add-ins/resources/resources-office-add-in-known-issues
- Trigger a cloud flow based on email properties in Power Automate - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/power-automate/email-triggers
- When a Email arrives V3 - Trigger parameter From - with 'or' instead 'any', accessed April 7, 2026, https://community.powerplatform.com/forums/thread/details/?threadid=c6621bc4-25de-ef11-a730-7c1e52687e9d
- When new email arrives (V3) triggered flow to run twice instead of once, accessed April 7, 2026, https://community.powerplatform.com/forums/thread/details/?threadid=1dff86dd-fbd1-ef11-8eea-6045bdec8eeb
- Colligo Email Manager for Office 365 - Microsoft Marketplace, accessed April 7, 2026, https://marketplace.microsoft.com/en-us/product/office/wa104381868?tab=overview
- Compare AvePoint vs. Colligo Briefcase in 2026, accessed April 7, 2026, https://slashdot.org/software/comparison/AvePoint-vs-Colligo-Briefcase/
- Connect Email and SharePoint / Office 365 | OnePlaceMail, accessed April 7, 2026, https://www.oneplacesolutions.com/oneplacemail.html
- Compare Kernel G Suite Backup Tool vs. MacroView DMF in 2026 - Slashdot, accessed April 7, 2026, https://slashdot.org/software/comparison/Kernel-G-Suite-Backup-Tool-vs-MacroView-DMF/
- AvePoint Opus - Advanced Information Lifecycle Management, accessed April 7, 2026, https://www.avepoint.com/products/records-management
- Future-Ready Records Management in Microsoft 365 with AvePoint Opus, accessed April 7, 2026, https://www.avepoint.com/blog/manage/future-ready-records-management-microsoft-365-avepoint-opus
- Introducing the harmon.ie Desktop App: The Business File Manager for Microsoft 365, accessed April 7, 2026, https://harmon.ie/blog/harmonie-desktop-app-business-file-manager-for-m365/
- harmon.ie Pricing - Outlook & SharePoint Email Management Plans, accessed April 7, 2026, https://harmon.ie/pricing/
- ShareGate Snapshot: What's New in Migrate and Protect — February 2026, accessed April 7, 2026, https://sharegate.com/blog/sharegate-snapshot---february-2026
- ShareGate snapshot March 2026 | What's new, accessed April 7, 2026, https://sharegate.com/blog/sharegate-snapshot-march-2026
- Use the Microsoft Graph API, accessed April 7, 2026, https://learn.microsoft.com/en-us/graph/use-the-api
- Download Outlook Email Attachments Using Microsoft Graph API In Python - YouTube, accessed April 7, 2026, https://www.youtube.com/watch?v=UF-hc2nZV_A
- Breaking Change Ahead: Graph API Updates to Sensitive Email Properties - Microsoft 365 Developer Blog, accessed April 7, 2026, https://devblogs.microsoft.com/microsoft365dev/graph-api-updates-to-sensitive-email-properties/
- Introducing the Microsoft Graph User Configuration API (preview), accessed April 7, 2026, https://devblogs.microsoft.com/microsoft365dev/introducing-the-microsoft-graph-user-configuration-api-preview/
- What is Microsoft 365 Copilot?, accessed April 7, 2026, https://learn.microsoft.com/en-us/microsoft-365/copilot/microsoft-365-copilot-overview
- Create your first cloud flow using Copilot - Power Automate - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/power-automate/create-cloud-flow-using-copilot
- How To Use Microsoft Copilot with Power Automate [Tutorials] - Ascendient Learning, accessed April 7, 2026, https://www.ascendientlearning.com/training-resources/tutorials/how-to-use-microsoft-copilot-power-automate
- Microsoft Copilot Studio Tutorial: Monitor Outlook Inbox & Append Emails to SharePoint‑Excel Table - YouTube, accessed April 7, 2026, https://www.youtube.com/watch?v=86AuVsXthkI
- Learn about Microsoft Purview Data Lifecycle Management, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/data-lifecycle-management
- Create retention labels for exceptions - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/create-retention-labels-data-lifecycle-management
- Use retention labels to manage the lifecycle of documents stored in SharePoint, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/auto-apply-retention-labels-scenario
- Declare records by using retention labels - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/declare-records
- Learn about sensitivity labels | Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/sensitivity-labels
- Create and configure sensitivity labels and their policies - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/purview/create-sensitivity-labels
- Overview of Teams and SharePoint integration - Microsoft Learn, accessed April 7, 2026, https://learn.microsoft.com/en-us/sharepoint/teams-connected-sites
- Email Sent to Teams Channels Has New SharePoint Location - Office 365 for IT Pros, accessed April 7, 2026, https://office365itpros.com/2025/11/13/email-sent-to-teams-channels/
- i can not install add ins in new outlook - Microsoft Q&A, accessed April 7, 2026, https://learn.microsoft.com/en-us/answers/questions/5770446/i-can-not-install-add-ins-in-new-outlook

