Hello all,
I am wanting to create a flow that does the following. I have a SharePoint list called Actions, this list is basically a check list of items for employees. Currently they have to go into the list and filter for their name in the AssignedTo column. There is also a column that I have made to autofill with their email address. I would like a flow that sends a summary email once a week with the action items assigned to employees.
Any ideas?
Solved! Go to Solution.
Hi @ICC_alyssa,
What is the type of the AssignedTo column in your sharepoint list?
Do you want to send an email to the AssignedTo person when an item is created in the list, or do you want to send a summary email once a week with the action items assigned to employees?
If you want to send a summary email once a week with the action items assigned to employees, I have made a test on my side to create a AssignedTo column with Person type,the sharepoint list as below:
You could refer to screenshot below to create the flow:
The expression in the Compose as below:
union(variables('AssignedToArray'),variables('AssignedToArray'))
The expression in the Filter Array as below:
@equals(item()?['AssignedTo']?['Email'], items('Apply_to_each_2'))
The Title expression in the Create Html table as below:
item()?['Title']
The AssignedToEmail expression in the Create Html table as below:
item()?['AssignedTo']?['Email']
The flow would run successfully as below:
Each AssignedTo would recieve an email with the related items, and the user Test2 would recieve the email as below:
Best regards,
Alice
Hi @ICC_alyssa,
What is the type of the AssignedTo column in your sharepoint list?
Do you want to send an email to the AssignedTo person when an item is created in the list, or do you want to send a summary email once a week with the action items assigned to employees?
If you want to send a summary email once a week with the action items assigned to employees, I have made a test on my side to create a AssignedTo column with Person type,the sharepoint list as below:
You could refer to screenshot below to create the flow:
The expression in the Compose as below:
union(variables('AssignedToArray'),variables('AssignedToArray'))
The expression in the Filter Array as below:
@equals(item()?['AssignedTo']?['Email'], items('Apply_to_each_2'))
The Title expression in the Create Html table as below:
item()?['Title']
The AssignedToEmail expression in the Create Html table as below:
item()?['AssignedTo']?['Email']
The flow would run successfully as below:
Each AssignedTo would recieve an email with the related items, and the user Test2 would recieve the email as below:
Best regards,
Alice
Thank you! This is exactly what I needed. Happy Holidays!
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
80 | |
55 | |
55 | |
43 | |
39 |
User | Count |
---|---|
83 | |
81 | |
76 | |
65 | |
42 |