cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Send user email of all their tasks assigned

I am using Microsoft Lists to manage a small project. There is a column for the task and another for the user assigned to that task. I have created a flow which will email a user as soon as a task is assigned to them (based on when item modified trigger). I would now like to create a new flow which will do a similar thing except combine these task assignments into a single email so that if I assign a user 10 tasks per day they get one summarised email, not 10.

This is how the new flow looks so far:

1) Recurrence Trigger (Set to One Day)

2) Get Items

3) Filter Array (I would like to use this to find only the items modified since the previous time this was triggered, but not sure how)

In the next steps I think I need to combine (via Compose perhaps?) the filtered items above so that one email per user is sent with all of their assigned task for the day (Apply Each perhaps?), but I have tried this a few different ways but keep not getting it to work. What actions should I use next?

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @Power_Automater 

According to your description, you want to send user one email of all their tasks assigned.

I set up a flow, you can refer to below screenshots to see if it helps.

Suppose I will run the flow at 5pm every day, filter out the items that have been modified today, and then send an email to users with all their assigned task information.

This is my test list.

vLilyWmsft_15-1643097449233.png

Flow in details.

vLilyWmsft_1-1643096631849.png

Expression1:formatDateTime(item()?['Modified'], 'yyyy-MM-dd')

Expression2:formatDateTime(utcNow(), 'yyyy-MM-dd')

vLilyWmsft_2-1643096659623.png

vLilyWmsft_3-1643096753510.png

vLilyWmsft_4-1643096792515.png

Expression1:item()?['AssignedTo/Email']

Expression2:items('Apply_to_each')?['AssignedToEmail']

vLilyWmsft_5-1643096872641.png

Select the column that you want to display in the email.

vLilyWmsft_6-1643096995848.png

vLilyWmsft_7-1643097063168.png

Expression:items('Apply_to_each')?['AssignedToEmail']

vLilyWmsft_8-1643097100280.png

After flow runs, recipients will receive an email with all their assigned tasks.

vLilyWmsft_12-1643097278427.pngvLilyWmsft_14-1643097309735.pngvLilyWmsft_13-1643097295281.png

Hope the content above may help you.

Best Regards

If my answer helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

11 REPLIES 11

You can create a table, and make an entry every time it is triggered
get the latest entry time 
Now get the items which are modified is after the time that is made an entry above
Now apply each, get the task assigned compose an html and email to the user

I think I understand the actions, but do you mean use the flow as I have it and add your suggested these after (if so what do I put in the Filter Array to get the recently modified items?), or do I create a new flow with a When Item Created trigger?

Hi @Power_Automater 

According to your description, you want to send user one email of all their tasks assigned.

I set up a flow, you can refer to below screenshots to see if it helps.

Suppose I will run the flow at 5pm every day, filter out the items that have been modified today, and then send an email to users with all their assigned task information.

This is my test list.

vLilyWmsft_15-1643097449233.png

Flow in details.

vLilyWmsft_1-1643096631849.png

Expression1:formatDateTime(item()?['Modified'], 'yyyy-MM-dd')

Expression2:formatDateTime(utcNow(), 'yyyy-MM-dd')

vLilyWmsft_2-1643096659623.png

vLilyWmsft_3-1643096753510.png

vLilyWmsft_4-1643096792515.png

Expression1:item()?['AssignedTo/Email']

Expression2:items('Apply_to_each')?['AssignedToEmail']

vLilyWmsft_5-1643096872641.png

Select the column that you want to display in the email.

vLilyWmsft_6-1643096995848.png

vLilyWmsft_7-1643097063168.png

Expression:items('Apply_to_each')?['AssignedToEmail']

vLilyWmsft_8-1643097100280.png

After flow runs, recipients will receive an email with all their assigned tasks.

vLilyWmsft_12-1643097278427.pngvLilyWmsft_14-1643097309735.pngvLilyWmsft_13-1643097295281.png

Hope the content above may help you.

Best Regards

If my answer helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you @v-LilyW-msft , I am building this out now. I just wanted to double check how you added the "Modified" column to the list? When I try to do this I get an error saying that "Modified" is already taken and so cannot add it.

Hi @Power_Automater 

Modified column is a column that comes with sharepoint, but it is hidden by default. You can find it by clicking Show/hide columns, and then check it.

vLilyWmsft_0-1643244308331.png

vLilyWmsft_1-1643244474189.png

Best Regards.

Ah perfect thank you so much.


Just one last question please and then I will be happy to close this one.
1) Is it possible to add into the email subject the name of the List file? I have tried the following but it came up as blank in the test email: items('Apply_to_each')?['Name']
2) Is it possible to add the recipients name into the email body (eg. Hi John)? I have tried the following but this also came up as a blank: items('Apply_to_each')?['Assignedto/DisplayName']

If I try to use the Name and Assigned To Display name from Get Items the email action is place into a second Apply Each.

After some more testing to attempt to resolve the above I am unfortunately getting an internal server error at Get Items when changing the AssignTo field to allow multiple selections. I thought it would be possible to have multiple people assigned to a single task?

Full error: Encountered internal server error. The tracking Id is '20404e29-c5e3-48c4-9113-2f67adc223fb'.

 

Power_Automater_0-1643264030532.png

 

I think so, try unchecking this and run the flow you will know it

Send user email of all their tasks (subtasks) assigned, but with a condition. I have Apply to each for value from SharePoint, and In the Condition I have is: if Status Value is Open Or In Progress AND Modified less than or equal 3 days - IF YES SECTION ->
1. Compose
"Assign": variable Assign , 
"NameOfSubtask": variable Subtask (in json format)

2. Append to array variable (I grab the output from Compose)
3. Set Variable (here I get list from items that satisfy that condition (from all 7 items I receive 6 in my array (because one of the tasks is with status Completed).
Next I have some problems, how can I use that variable to select my unique emails and get the description (name of the subtask and put them into the Send an Email action. I tried to SELECT 'Assign(the emails)' and added Compose action to create union of them, then again I added Apply to each (I get the output from Compose with the Unique Emails), what should I do next?  How can I get the tasks for each user after this Condition and send an email?

Best Regards.

 


myCondition.JPG

myList.JPG

 

after IF YES.JPG

  Here are some screenshots of my flow.
Just to let you know, I am new with Power Automate, so maybe I am making some mistakes here.
Thank you! 🙂 

Emilija10
Frequent Visitor

Parsed my array variable.JPG

from parse json variable select emails and union.png

 

 

SOLVED: Send user email of all their tasks assigned if the status of the task is 'Open' or 'In Progress'

https://tomriha.com/send-one-email-per-user-with-multiple-sharepoint-items-in-power-automate/ 
This link was very helpful. I sorted it out, with Parse JSON. 

I hope that this may help someone, it is a similar scenario but in a different way 🙂 
Best Regards.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,708)