문제

I have a sharepoint list. In this list, each row contains some basic information like email address, yes/no field (fieldname - "issue_fixed").

I want to send a daily reminder email for each row where "issue_fixed" field is not checked(issue_fixed=No).

How to achieve this using Microsoft Flow?

도움이 되었습니까?

해결책

Create a flow that uses a timer as its trigger, and schedule the timer for once a day. After the trigger fires, have an action that gets the list items, filtered for the ones that need a reminder, and process those through a loop, sending the emails. Here is a microsoft doc that will walk you through the process of triggering a flow based on a schedule.

다른 팁

I was able to get this to work, Problem was caused by O365 adding "_x200" to the column name. Once I added the _x0200 my filters work and I was able to complete my flow.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top