Skip to content

Commit 2fc5fd9

Browse files
committed
add scheduled post
1 parent ac72d1d commit 2fc5fd9

File tree

5 files changed

+43
-0
lines changed

5 files changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Automate Your Outlook Out of Office
3+
image: /assets/img/tutorials/automatic-out-of-office/preview_image.jpg
4+
description: Use Power Automate to automatically schedule your Outlook Out of Office whenever it detects an upcoming Out of Office appointment on your calendar.
5+
categories: [Automation,Power Automate]
6+
tags: [power-automate,outlook,automation,flow]
7+
---
8+
9+
In most workplaces, if you plan to be out of office, you need to remember to turn on your Outlook Out of Office replies. This feature automatically replies to anyone who emails you with a message letting them know you're away. You can customize the message, set start and end times for the replies, and specify whether to send replies to internal recipients only or to external recipients as well.
10+
11+
I always seemed to forget to turn mine on. While I can enable it using my smartphone, the process isn’t very intuitive. So, I decided to automate turning it on because, honestly, what is automation for if not to do things for you?
12+
13+
## The Flow
14+
15+
This automation is easy to set up and takes just a few minutes. We’ll build a Power Automate flow triggered when it detects a calendar event starting in 15 minutes. It will check if the event is marked as "out of office" and, if so, schedule your Out of Office replies to start and end with the event.
16+
17+
## Trigger
18+
19+
Start by creating a new flow with the trigger [When an upcoming event is starting soon](https://learn.microsoft.com/en-us/connectors/office365/#when-an-upcoming-event-is-starting-soon-(v3)). This trigger polls your calendar every minute for events starting soon. You can configure how far ahead it looks; I have mine set to detect events starting in 30 minutes.
20+
21+
![trigger parameters](/assets/img/tutorials/automatic-out-of-office/trigger-parameters.png)
22+
23+
## Actions
24+
25+
For your first action, add a condition. This will check the event's "Show As" field. If it is "oof" (out of office), the flow will turn on your Out of Office replies. If it shows anything else, the flow ignores the event.
26+
27+
![condition parameters](/assets/img/tutorials/automatic-out-of-office/condition-parameters.png)
28+
29+
Add the [Set up automatic replies](https://learn.microsoft.com/en-us/connectors/office365/#set-up-automatic-replies-(v2)) action to the **True** branch of the condition.
30+
31+
![true branch](/assets/img/tutorials/automatic-out-of-office/true-branch.png)
32+
33+
Set the action’s parameters as follows:
34+
35+
- **Status**: Scheduled
36+
- **External Audience**: None (this means replies will only be sent to internal recipients)
37+
38+
Under *Advanced Parameters*, set the following using dynamic content:
39+
40+
- **Start Time DateTime**: Set to **Start time** from the trigger
41+
- **End Time DateTime**: Set to **End time** from the trigger
42+
43+
That’s it! Now, whenever you add an event to your calendar marked as "out of office," this flow will automatically schedule your Outlook Out of Office replies for the event duration.
16.2 KB
Loading
747 KB
Loading
16.3 KB
Loading
23.7 KB
Loading

0 commit comments

Comments
 (0)