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

How to Avoid multiple emails when share point items created

Hello.

 

I have 2 share point list -

1. Transaction List  - Contains client transaction details with country column and does not contain email id of country managers.

2. Country Mangers List - Contains email ids of each country managers along with country column. 

Both lists have country as common column.

 

My requirement is to send email to country mangers whenever  transaction share point is updated with entries. I have achieved the same with help of an expert from community. The flow starts with auto trigger when item is created in transaction list and reads country managers list and sends email. And it works perfect for below example transaction list .

 

Each item contains different countries , Country managers get email when an entry is created in transaction list 

Sivaperumal31_0-1677253213458.png

 

But the same flow sends 4 emails to same manager when Transaction share point list is updated with entries for same country like below. Which I would like to avoid.

 

Sivaperumal31_1-1677253600154.png

 

I understand that this is expected behavior when the auto trigger is defined as  "When an item is created" in Transaction share point list.

 

But I would like to know of any alternate way to send only one email if transaction share point list is updated with entries for the same country, It does not have to auto trigger . I can easily do it if email id is contained in Transaction list itself . But

How can I combine 2 share point list and look up to send email with manual trigger. 

 

Flow I created is below. 

 

Sivaperumal31_2-1677254240707.png

 

1 ACCEPTED SOLUTION

Accepted Solutions

Hopefully this is what you're looking for. I've assumed all your fields are Single line of text except for Amount which is of type Number. I've also used the Title fields (renamed as Country) for the Countries. This will run the flow daily, get all items that were created in the last 24 hours, and send them to each Country Manager as a Table.

 

I've used the following lists for this example.

 

grantjenkins_1-1677296467557.png

 

grantjenkins_14-1677297812272.png

 

See full flow below. I'll go into each of the actions.

grantjenkins_0-1677296445603.png

 

Recurrence is set to run daily at 6AM (you can set this to suit your needs).

grantjenkins_4-1677297054663.png

 

Get Transactions (Get items) retrieves the items that were created in the last 24 hours. The expression used for the Filter Query is:

Created gt '@{addDays(utcNow(), -1)}'

grantjenkins_5-1677297118402.png

 

Get Managers (Get items) retrieves all the Country Managers.

grantjenkins_6-1677297163256.png

 

Select Countries (Select) gets an array of all the Countries (our Title field). Note that Map is set to Text mode (see screenshot).

grantjenkins_7-1677297224685.png

 

Compose HTML style (Compose) is some CSS that will be used to style the HTML tables within the email. I've set it before the loop as we only need to create this once, then use it multiple times.

<style>
    table {
        border-collapse: collapse;
    }
    table td,
    table th {
        border: 1px solid #ddd;
        padding: 6px 20px;
        text-align: left;
    }
    table th {
        background-color: #1C6EA4;
        color: white;
    }
</style>

grantjenkins_8-1677297303414.png

 

Apply to each iterates over each of the Countries. We use the union expression to ensure we remove any duplicate Country values.

union(body('Select_Countries'), body('Select_Countries'))

grantjenkins_9-1677297369073.png

 

Filter Transactions (Filter array) extracts the transactions for the current Country that we are iterating over.

grantjenkins_10-1677297420103.png

 

Filter Managers (Filter array) extracts the managers for the current Country that we are iterating over.

grantjenkins_11-1677297462711.png

 

Select Manager (Select) extracts the Manager emails. Note that Map is using Text mode here similar to the Select Countries. The expression used is:

item()?['Manager']

grantjenkins_12-1677297538914.png

 

Create HTML table uses the output from Filter Transactions and maps the fields as below.

//Title
item()?['Title']

//CRM ID
item()?['CRMID']

//Client Name
item()?['ClientName']

//Amount
item()?['Amount']

grantjenkins_13-1677297645075.png

 

Send an email uses the output from Compose HTML style and Create HTML table in the Body, Current Item (Country) in the Body and the Subject, and the following expression in the To field that joins each of the Country Managers.

join(body('Select_Managers'), ';')

grantjenkins_15-1677297947969.png

 

When the flow runs (daily) each of the Country Managers will receive an email with any items that have been created in the last 24 hours. See example emails below.

grantjenkins_17-1677298044645.png

 

grantjenkins_18-1677298053223.png

 

grantjenkins_19-1677298073819.png


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

View solution in original post

7 REPLIES 7
selfy100
Resolver II
Resolver II

There are two different ways I would tackle this.

 

1. If I was adding new transactions to the list all day long, and wanted to send the manager 1 email at the end of the day that listed all the transactions, I would change the flow from an Automated trigger, that sends an email whenever a new transaction is input, to a Scheduled trigger, that runs at a certain time everyday and finds all the transactions for each manager and sends them together.

 

2. If I transactions come in bunches and I want to send the manager several emails throughout the day I would add a Delay of 5 minutes or so into the flow you posted above, then after the delay, collect all the transactions that have been added since the flow was triggered and send them together to the manager.

 

Both would be fairly simple to set up. Let me know which one would work better for you and I will workshop the flow!

Hi @selfy100 ,

 

Thank you for the time and the help. 

 

I expect several countries to be updated in transaction list with multiple entries for each country. I really do not need to keep sending email throughout the day. Once in a day , probably at the end of the day, the flow can run and trigger one email to each country managers saying that new entries are added in transaction list since last time they got the email would suffice. 

 

So I think option 1 with scheduled trigger once a day should be fine.

 

Just to provide accurate scenario, transaction list would like below at the end of the day. 

 

Sivaperumal31_0-1677282903249.png

 

The country manager list may have multiple managers for given country, Meaning, multiple entries for same country like below.  One email can be sent to all 3 managers together for the country 'CN' below.

 

Sivaperumal31_1-1677283174455.png

 

Thank you.

selfy100
Resolver II
Resolver II

This is absolutely doable using Filters in the Get Items action.

I will put together a flow for you and post it shortly.

Hopefully this is what you're looking for. I've assumed all your fields are Single line of text except for Amount which is of type Number. I've also used the Title fields (renamed as Country) for the Countries. This will run the flow daily, get all items that were created in the last 24 hours, and send them to each Country Manager as a Table.

 

I've used the following lists for this example.

 

grantjenkins_1-1677296467557.png

 

grantjenkins_14-1677297812272.png

 

See full flow below. I'll go into each of the actions.

grantjenkins_0-1677296445603.png

 

Recurrence is set to run daily at 6AM (you can set this to suit your needs).

grantjenkins_4-1677297054663.png

 

Get Transactions (Get items) retrieves the items that were created in the last 24 hours. The expression used for the Filter Query is:

Created gt '@{addDays(utcNow(), -1)}'

grantjenkins_5-1677297118402.png

 

Get Managers (Get items) retrieves all the Country Managers.

grantjenkins_6-1677297163256.png

 

Select Countries (Select) gets an array of all the Countries (our Title field). Note that Map is set to Text mode (see screenshot).

grantjenkins_7-1677297224685.png

 

Compose HTML style (Compose) is some CSS that will be used to style the HTML tables within the email. I've set it before the loop as we only need to create this once, then use it multiple times.

<style>
    table {
        border-collapse: collapse;
    }
    table td,
    table th {
        border: 1px solid #ddd;
        padding: 6px 20px;
        text-align: left;
    }
    table th {
        background-color: #1C6EA4;
        color: white;
    }
</style>

grantjenkins_8-1677297303414.png

 

Apply to each iterates over each of the Countries. We use the union expression to ensure we remove any duplicate Country values.

union(body('Select_Countries'), body('Select_Countries'))

grantjenkins_9-1677297369073.png

 

Filter Transactions (Filter array) extracts the transactions for the current Country that we are iterating over.

grantjenkins_10-1677297420103.png

 

Filter Managers (Filter array) extracts the managers for the current Country that we are iterating over.

grantjenkins_11-1677297462711.png

 

Select Manager (Select) extracts the Manager emails. Note that Map is using Text mode here similar to the Select Countries. The expression used is:

item()?['Manager']

grantjenkins_12-1677297538914.png

 

Create HTML table uses the output from Filter Transactions and maps the fields as below.

//Title
item()?['Title']

//CRM ID
item()?['CRMID']

//Client Name
item()?['ClientName']

//Amount
item()?['Amount']

grantjenkins_13-1677297645075.png

 

Send an email uses the output from Compose HTML style and Create HTML table in the Body, Current Item (Country) in the Body and the Subject, and the following expression in the To field that joins each of the Country Managers.

join(body('Select_Managers'), ';')

grantjenkins_15-1677297947969.png

 

When the flow runs (daily) each of the Country Managers will receive an email with any items that have been created in the last 24 hours. See example emails below.

grantjenkins_17-1677298044645.png

 

grantjenkins_18-1677298053223.png

 

grantjenkins_19-1677298073819.png


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

HI @grantjenkins ,

 

Thank you so much for the effort to help me here, really appreciate it.

I followed the steps , and it worked almost perfect with one small issue . 

 

Issue 1 - (Fixed it somehow ) 

Email content was blank with header alone like below, So I changed the formula for header in HTML table step like below for the example of country column. it fixed the problem

 

Sivaperumal31_0-1677308892497.png

 

 

Issue 2: When the transaction list contains only data for one country - lets say CN, I still get email trigger for all the countries maintained in country list ,  even though no transaction is maintained or posted in transaction list for that country, In my scenario, country list will be static with all the managers for all the countries. 

 

But the flow loops for every country maintained in country list and send email to respective managers with blank content, is there anyway to avoid sending mail for the countries for which no entry posted in transaction list? As it will be misleading.

 

My country list is as below 

 

Sivaperumal31_1-1677309560333.png

 

Transaction list only contains entries for one country - CN, but I get email for SG too with blank table. 

Sivaperumal31_2-1677309617481.png

 

 

Thanks again

 

Update on Issue 2: 

Tried creating condition to check the length of the HTML table before sending the email a But its still not working - condition is always true for mail trigger for both scenario.

 

Sivaperumal31_0-1677319184970.png

 

Found that length of the empty HTML table is 105 as it contains headers , so changed the condition like below and it worked. 

 

Sivaperumal31_1-1677319801139.png

 

@Sivaperumal31 

 

Issue 1: Yes, you would need to use your own field names here.

 

Issue 2: I'm assuming this is because you are using the values from Get Managers in Select Countries. You will need to use the values from Get Transactions here, so it only has Countries returned in the Transactions.

grantjenkins_0-1677321998630.png

 

Issue 3: This will be resolved automatically after fixing Issue 2. You won't need to have a Condition at all in the flow as per my example.

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

HI @grantjenkins ,

Spot on, That's exactly where I made the mistake. Thank you 

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