What Most People Miss About Remarkable Sync with Outlook
By Lisa Anderson
You drag your handwritten meeting notes from Remarkable into Outlook as an attachment. Then you search for ‘Q3 Budget’ — and find *three* PDFs: ‘Budget-Notes.pdf’, ‘Budget-Notes-2024-04-12.pdf’, and ‘Scan_20240412_1422.pdf’. No subject line. No sender. No way to link it back to the actual meeting. You’ve just wasted 90 seconds — and this happens every Tuesday.
What It Does
Remarkable doesn’t talk to Outlook directly. There’s no built-in calendar sync, no two-way contact push, no automatic email linking. What does work — and works reliably — is syncing handwritten notes as files into Outlook’s ecosystem via OneDrive and folder monitoring. When you save a note titled ‘1:1 with Manager’ on your Remarkable, it lands in your OneDrive/Remarkable/Notes folder. From there, Outlook can watch that folder, auto-attach matching files to related emails or calendar items, and even trigger follow-up reminders. The beauty of this approach is that it’s version-agnostic, requires no third-party apps, and survives Outlook updates.
How to Set It Up
Start in Outlook Desktop (365 or 2019). This won’t work in Outlook Web App — no folder-watching support there.
First, ensure your Remarkable syncs to OneDrive:
On your Remarkable tablet: Settings > Cloud Sync > Select OneDrive > Sign in
In OneDrive desktop app: Right-click tray icon > Settings > Account > Confirm your account is linked
Create a dedicated folder: OneDrive\Remarkable\Notes — this is your sync root
Now configure Outlook to monitor it:
Open Outlook → File > Manage Rules & Alerts > New Rule
Select Apply rule on messages I receive → Next
Uncheck all conditions → Click Next
Under Actions, check run a script → click script → choose SyncRemarkableNotesToEmail (we’ll build this next)
Click Finish → name it RM-Note Linker
That script doesn’t exist yet — so create it:
Alt+F11 to open VBA editor
In Project Explorer, right-click ThisOutlookSession → Insert > Module
Paste this code (tested in Outlook 365 v2403+ and 2019):
Sub SyncRemarkableNotesToEmail()
Dim fso As Object: Set fso = CreateObject("Scripting.FileSystemObject")
Dim folderPath As String: folderPath = Environ("USERPROFILE") & "\OneDrive\Remarkable\Notes"
Dim olApp As Outlook.Application: Set olApp = Outlook.Application
Dim olNs As Outlook.Namespace: Set olNs = olApp.GetNamespace("MAPI")
Dim inbox As Outlook.Folder: Set inbox = olNs.GetDefaultFolder(olFolderInbox)
Dim newItem As Outlook.MailItem
If fso.FolderExists(folderPath) Then
Dim file As Object
For Each file In fso.GetFolder(folderPath).Files
If LCase(fso.GetExtensionName(file.Name)) = "pdf" Then
If InStr(file.Name, Format(Date, "yyyymmdd")) > 0 Or _
InStr(file.Name, "Weekly Sync") > 0 Or _
InStr(file.Name, "1:1 with") > 0 Then
Set newItem = inbox.Items.Add("IPM.Note")
newItem.Subject = "[RM] " & fso.GetBaseName(file.Name)
newItem.Attachments.Add file.Path
newItem.Save
End If
End If
Next
End If
End Sub
Back in Outlook, go to File > Options > Trust Center > Trust Center Settings > Macro Settings → select Notifications for all macros (not digitally signed)
Restart Outlook. The rule will now run daily at startup — not in real time, but reliably.
Configuration Options
This isn’t a toggle-switch feature. It’s a set of interlocking settings — each one changes how tightly your Remarkable notes bind to Outlook context. Here’s what each does, and when to change it:
Your Situation
Best Method
Why
You take notes in meetings and want them auto-attached to calendar invites
Use Outlook’s Calendar > View Settings > Other Settings > Enable 'Auto-link attachments to calendar items' + rename RM files to match meeting subject exactly
Outlook scans filenames against calendar item subjects. ‘Weekly Sync — Product Team.pdf’ will attach to the matching invite — no script needed.
You forward meeting notes to stakeholders and need clean, searchable PDFs
Compressed PDFs lose OCR text layers. Outlook’s search won’t find ‘Q3 budget’ inside them — even if the filename contains it.
You use multiple Outlook profiles (work + personal)
Hardcode the target profile in the VBA script: replace olNs.GetDefaultFolder with olNs.Folders("work@company.com").Folders("Inbox")
Otherwise, Outlook picks the default profile — which may be your personal one. This avoids sending internal notes to your Gmail inbox.
You’re on the new Outlook for Windows (v1.2024+)
Skip VBA entirely. Use Power Automate Desktop instead — trigger on OneDrive folder change → send Outlook email with attachment
New Outlook blocks VBA by design. Power Automate Desktop is Microsoft’s official replacement — and it runs the same logic without macro warnings.
Real-World Examples
Example 1: Post-meeting follow-up
After ‘Budget Review Q3’, you export your Remarkable notes as ‘Budget Review Q3.pdf’ → drops into OneDrive/Remarkable/Notes → Outlook rule fires → creates draft email titled “[RM] Budget Review Q3” with PDF attached → you hit Ctrl+Enter to send. Total time: 8 seconds.
Example 2: Client call tracking
You tag your RM note ‘Client ABC — Contract Negotiation’ → it appears in Outlook search instantly because the filename matches your sent email subject from last week → no need to dig through folders.
Example 3: Weekly reporting
Every Monday at 8:00 AM, your VBA script checks for files containing ‘Weekly Sync’ + today’s date → bundles them into one summary email → sends to your manager. No copy-paste. No missed attachments.
Limitations and Gotchas
This isn’t magic — and some limits are non-negotiable.
No two-way sync: Editing a note in Outlook won’t update the Remarkable file. It’s one-way only: RM → OneDrive → Outlook.
No calendar event creation: You cannot create a new Outlook meeting from a Remarkable note. That part still requires manual entry.
New Outlook for Windows blocks VBA: If you’re on build 1.2024.711.400 or later, the script above will fail silently. Switch to Power Automate Desktop — it’s free with Microsoft 365 E3/E5.
Admin overrides matter: If your IT department disables OneDrive sync for your account, or blocks VBA macros at the Group Policy level (Computer Config > Admin Templates > Microsoft Office > Security Settings > Disable VBA), none of this works — no workaround.
File naming is everything: A note named ‘Scan_20240412_1422.pdf’ will never auto-link. But ‘1:1 with Manager.pdf’ will — every time.
Here’s what to do next — pick one:
If you’re using…
Do this first
Time required
Outlook 365 or 2019 (classic)
Enable macro settings + paste the VBA script + create the OneDrive folder
6 minutes
New Outlook for Windows (v1.2024+)
Install Power Automate Desktop → use template ‘On OneDrive file added → Send Outlook email’
11 minutes
Outlook Web App only
Rename all RM exports to match your email subjects *before* syncing → rely on Outlook’s built-in filename search
2 minutes per note
Lisa Anderson
Lisa is a certified Microsoft trainer who writes step-by-step guides for Power Automate