🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Outlook to Email, a daily meeting digest you trust

Lisa Granqvist Partner Workflow Automation Expert

Your day starts, you open your calendar, and it’s already a mess. Meetings scattered across views, links buried in descriptions, and that one invite with “TBD” that somehow still matters.

Marketing managers trying to protect focus time feel this. A business owner bouncing between calls feels it too. And so does an ops lead who just wants an Outlook email digest they can trust, without hunting through Outlook at 8:05 AM.

This workflow pulls today’s Microsoft Outlook meetings, formats them into a clean HTML email, and sends it to you automatically. You’ll see what it does, what you need, and where teams usually customize it.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: Outlook to Email, a daily meeting digest you trust

The Challenge: Keeping Today’s Meetings Straight

Outlook is great at storing meetings. It’s not great at helping you start the day with clarity. You bounce between Day view and Agenda view, then open each event to find the join link, then scan attendee lists to remember who’s in the room. If you’re on mobile, it’s worse. And when someone reschedules at 7:58 AM, your “plan” for the morning is instantly outdated, so you end up reacting instead of preparing.

It adds up fast. Here’s where it breaks down in real life.

  • Checking each event one-by-one eats about 20 minutes most mornings, even before you’ve done any real work.
  • Meeting links get missed because they’re tucked inside body text, or the invite was forwarded without the details.
  • Important context is scattered, so you join calls cold and spend the first five minutes catching up.
  • When calendars are shared across a team, it’s easy to overlook internal holds, time blocks, or “soft” meetings that still need prep.

The Fix: A Daily Outlook Digest Delivered to Email

This n8n automation runs for you every morning (8 AM by default). It calculates the exact start and end of “today” in a way Outlook understands, then pulls every calendar event that starts within that window. Next, it cleans the data into a simpler format (subject, start/end time, organizer, attendees, and meeting link). Finally, it generates a nicely formatted HTML email that reads like a daily briefing, not a raw export, and sends it to the address you choose. The result is a single message you can trust as your source of truth for the day.

The workflow starts on a schedule. Outlook events are fetched using a date-range filter for today, then shaped into consistent fields. After that, n8n builds the email markup and sends it via SMTP, so it lands in your inbox like any other daily digest.

What Changes: Before vs. After

Real-World Impact

Say you average 8 meetings a day. If you spend maybe 2 minutes opening each invite, finding the link, and checking who’s attending, that’s about 16 minutes daily, plus extra time when one invite is missing details. With this workflow, you spend about 30 seconds skimming one email, because the subject, times, attendees, and meeting links are already laid out. Over a week, that’s roughly an hour of attention back, and honestly it feels like more.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Microsoft Outlook to read your calendar events.
  • SMTP email account to send the digest email.
  • Microsoft OAuth credentials (create in Azure app registration with Calendars.Read permission).

Skill level: Beginner. You’ll connect Outlook and SMTP credentials, then adjust the schedule and recipient email.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

A scheduled run kicks things off. The workflow triggers every day at 8:00 AM (based on your n8n server timezone), so it shows up right when you start planning.

Today’s date range is computed. n8n calculates “start of today” and “start of tomorrow,” then converts both to ISO timestamps so Microsoft Outlook can filter events correctly.

Outlook events are pulled and cleaned up. Using an Outlook calendar events query, it fetches only meetings that start today, then maps the messy event objects into consistent fields like subject, organizer, attendees, and the meeting link.

An HTML digest is built and emailed. A code step formats each meeting into a readable card-style block, creates a clear subject line, and sends the whole thing through the Send Email node via your SMTP account.

You can easily modify the send time to match your routine, or change the date range to cover “next business day” instead of “today.” See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

Set the daily schedule that initiates the workflow and kicks off date range calculations for today’s meetings.

  1. Add and open Scheduled Automation Start.
  2. Set Rule to interval and set Trigger At Hour to 8 (matches the current configuration).
  3. Connect Scheduled Automation Start to Compute Date Range.

Tip: Adjust the trigger hour to your local time zone in n8n settings to avoid reminders sending at the wrong time.

Step 2: Connect Microsoft Outlook

Pull today’s meetings from your Outlook calendar using a date range filter driven by the previous code node.

  1. Open Retrieve Outlook Events.
  2. Credential Required: Connect your microsoftOutlookOAuth2Api credentials.
  3. Set Resource to event.
  4. Set Filters → Custom to =start/dateTime ge '{{$json.today}}' and start/dateTime lt '{{$json.tomorrow}}'.
  5. Confirm the connection flow: Compute Date RangeRetrieve Outlook EventsMap Meeting Fields.

⚠️ Common Pitfall: If no meetings return, verify your Outlook calendar time zone and ensure the date filter is correct for your region.

Step 3: Set Up Data Processing

Normalize meeting fields into a consistent structure and prepare them for HTML rendering.

  1. Open Compute Date Range and keep the default JavaScript that creates today and tomorrow ISO timestamps.
  2. Open Map Meeting Fields and confirm the following field mappings:
  3. Set id to ={{ $json.id }}, subject to ={{ $json.subject }}, and description to ={{ $json.bodyPreview }}.
  4. Set meeting_start to ={{ $json.start.dateTime }} and meeting_end to ={{ $json.end.dateTime }}.
  5. Set attendees to ={{ $json.attendees }}.
  6. Set meeting_organizer to ={{ $json.organizer.emailAddress.name }} and meeting_organizer_email to ={{ $json.organizer.emailAddress.address }}.
  7. Set meeting_link to ={{ $json.webLink }}.
  8. Ensure the flow continues from Map Meeting Fields to Build Email Markup.

Step 4: Configure Email Output

Generate HTML for the meeting reminder and send it via SMTP.

  1. Open Build Email Markup and keep the provided JavaScript that assembles HTML and sets the email subject.
  2. Open Dispatch Email Notice.
  3. Credential Required: Connect your smtp credentials.
  4. Set HTML to ={{ $json.html }} and Subject to ={{ $json.subject }}.
  5. Set To Email to [YOUR_EMAIL] and From Email to [YOUR_EMAIL].
  6. Confirm the connection flow: Build Email MarkupDispatch Email Notice.

Tip: Replace [YOUR_EMAIL] with a verified sender address to avoid SMTP delivery failures.

Step 5: Test and Activate Your Workflow

Run a manual test to confirm the data flow, then activate the workflow for daily reminders.

  1. Click Execute Workflow and verify that Retrieve Outlook Events outputs today’s meetings.
  2. Check that Build Email Markup returns a single item with subject and html.
  3. Confirm Dispatch Email Notice sends an email with the meeting cards in HTML.
  4. If the test succeeds, toggle the workflow to Active so Scheduled Automation Start runs daily.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Microsoft Outlook credentials can expire or need specific permissions. If things break, check your Azure app registration and the n8n Credentials entry (Calendars.Read is the usual missing piece) first.
  • If your SMTP provider has stricter login rules, sending can fail silently. Confirm the SMTP host/port and verify “app password” requirements in your email account settings.
  • Timezone mismatches are sneaky. If your n8n server timezone differs from your Outlook timezone, your “today” filter can pull the wrong meetings, so check the Schedule Trigger timezone and your Outlook account settings.

Common Questions

How quickly can I implement this Outlook email digest automation?

About 30 minutes if your Outlook and SMTP credentials are ready.

Can non-technical teams implement this meeting digest?

Yes. You’ll mostly be copying credentials into n8n and changing the schedule and email addresses.

Is n8n free to use for this Outlook email digest workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in SMTP costs (often free on existing email) and any Microsoft tenant policies for OAuth apps.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this Outlook email digest solution to my specific challenges?

You can change the Schedule Trigger time, then adjust the “Compute Date Range” code to cover tomorrow, the next business day, or the full work week. If you want to filter what counts as a “real meeting,” refine the Outlook node’s OData filter (for example, exclude “Free” events or only include meetings with attendees). Most teams also tweak the “Build Email Markup” code to add location, meeting category, or a clearer join button.

Why is my Microsoft Outlook connection failing in this workflow?

Usually it’s expired or misconfigured OAuth credentials in n8n, or the Azure app doesn’t have Calendars.Read approved by an admin. It can also fail when the tenant blocks third-party app consent. Less common, but real: your date filter is valid, yet returns nothing because the timezone in n8n doesn’t match the Outlook calendar timezone.

What’s the capacity of this Outlook email digest solution?

For a once-daily digest, capacity is basically a non-issue. On n8n Cloud Starter you can run thousands of executions per month, and this uses one execution per day per digest. If you self-host, you’re limited by your server rather than executions. Even with a packed calendar, generating one HTML email is lightweight.

Is this Outlook email digest automation better than using Zapier or Make?

Often, yes, because n8n handles the “format it nicely” part (custom HTML) without awkward workarounds. You also get full control over the date logic in code, which matters more than people think when timezones and workdays get involved. Zapier and Make can absolutely send daily emails, but the Outlook filtering plus HTML formatting tends to get fiddly. If your workflow needs strict control, or you want the option to self-host, n8n is a cleaner fit. Talk to an automation expert if you want someone to sanity-check the best option for your setup.

One email. All the meetings. The workflow handles the repetitive checking so you can start your day with your brain intact.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal