cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

HTML Table Flow Emails

I am trying to build a flow that sends a summary table daily of the items needing action based on a yes/no value in various columns. However, I am having two issues. 1. While the email is triggering daily, it is sending multiple emails based on the number of values in the table. For example, if there are two entries on the Sharepoint list, then two emails are sent both with the same information. 2. The yes/no value check appears to not be working. For example, I need emails to send based on current yes/no state of multiple "approval" columns (no approval process is needed). However, currently an email is being sent with all entries regardless of their approval statuses.
1 ACCEPTED SOLUTION

Accepted Solutions

Hi @Anonymous,

 

Do you want to extract the values of the multiple selection field and display them in text in the Html table?

You may need to use two variables to achieve this.

I have tested on my side, you could implement your requirements as follows.

1. Initialize two variables, the type is String and Array, the former is used to store the value of the multiple selection field, the latter is used to configure the data in the Html table.

6.PNG

2.Use Append to string variable action to store the value of Rebate Type field contained in each item.

  Then configure the fields that need to be displayed in the Html table in Append to array variable action.

  After each item is traversed, need to empty the String variable.

7.PNG

3.Finally, the Array variable is configured in Create HTML table action and sent as the body of the message.

8.PNG

Flow works well:

9.PNG

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

16 REPLIES 16
Anonymous
Not applicable

I have a screenshot, but I cannot seem to add photos or attachments.
v-bacao-msft
Community Support
Community Support

Hi @Anonymous,

 

I hope to see a specific screenshot of the Flow you configured.

You could try uploading your screenshots using other browsers such as IE or edge.

In addition, If you want to include all the relevant items related information in an email, you could configure Filter array action, filter the eligible items, and then configure the Value in Create Html table action.

I create a column named approval, of type Yes/No, and judge whether the value of approval is "true" in the Filter array. Here you need to use true/false instead of Yes/No.

Use Recurrence as the trigger and set Flow to fire only once a day.

Image reference:

5.PNG6.PNG

Take a try or provide more details about your Flow configuration, we would provide proper workaround for you.

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Barry,

 

See below. I had already used these steps, but it is still triggering multiple emails.

 

Rebate-Approval-Flow

Hi @Anonymous,

 

Do you mean that the email of the "Sales Manager Email" branch is sent repeatedly?

That is because you have configured "Send an Email action" in Apply_to_each, so every time traverse an item, it will send an email.

So first you can't configure the send email action in Apply_to_each.

In addition, I want to know if the contents of the emails sent in these branches are the same? Even if it is sent to the same person, if it is, it may be the reason for receiving multiple emails.

Because the actions in the parallel branches are not executed sequentially, please make sure not to set duplicate actions.

Try adjusting your Flow to check if the issue still exists.

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

I adjusted my flow to be sequential instead of parallel with condition checks, and now it works. However, when the email sends, I cannot get "Rebate Type" to display as text - this is a multiple selection field from Sharepoint. I tried adding "Initialize Variable" and "Append to String Variable" to get the value, but it still is not working.

 

Rebate Approval 2.JPG

 

Rebate Rmail.JPG

 

 

 

Hi @Anonymous,

 

Do you want to extract the values of the multiple selection field and display them in text in the Html table?

You may need to use two variables to achieve this.

I have tested on my side, you could implement your requirements as follows.

1. Initialize two variables, the type is String and Array, the former is used to store the value of the multiple selection field, the latter is used to configure the data in the Html table.

6.PNG

2.Use Append to string variable action to store the value of Rebate Type field contained in each item.

  Then configure the fields that need to be displayed in the Html table in Append to array variable action.

  After each item is traversed, need to empty the String variable.

7.PNG

3.Finally, the Array variable is configured in Create HTML table action and sent as the body of the message.

8.PNG

Flow works well:

9.PNG

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

We are close. I was able to get the table created. Now, however, the values in the table are not checking the condition of the responses. For example, I only want to send "Sales Admin Reviewed" false in one email, the next "Sales Admin  Reviewed" true and "Sales Manager Reviewed" false, etc. See screenshots.

 

Rebate Approval 3.JPGRebate Approval 4.JPGRebate Approval 5.JPGRebate Email 1.JPG

Hi @Anonymous,

 

If you want to send emails under these conditions, I suggest you create multiple similar Flows.

The ones that need to be changed are to get the eligible items.

If the types of these fields you are talking about are single-line text types or types that can be used in Filter Query, you could configure them to use Filter Query to get eligible items:

Note: If there is a space in the middle of the field name, you need to use "_x0020_" instead of a space.

3.PNG

If they are not a single-line text type or a type that cannot be used in Filter Query, then you can't configure Filter Query.

You could use Filter array to filter the value of Get items action output, and then configure the value of Filter query output in the following action.

Because you can't use the Dynamic content output by Get items, you need to configure the Expression yourself to get the data.

Like:

1.PNG2.PNG

Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

The filter query seems to be working, however when I try to have it look up multiple variables using the "and" condition, I get an error that the expression is invalid.

 

Rebate Approval 6.JPG

Hi @Anonymous,

 

I did a test on my side and met the problem you said, but it seems that it can't filter out the correct items.

You could consider using the Filter array mentioned in my previous Post.

Configure the following conditions in the Filter array:

@and(equals(item()?['Sales_x0020_Admin_x0020_Reviewed'], true),equals(item()?['Sales_x0020_Manager_x0020_Review'], false))

Image reference:

4.PNG

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

It seems like every time we fix one thing, another breaks. I added in the array as sugsted. Now the condition is not working and the emails stopped displaying correctly. HELP!

 

Rebate Approval 7.JPGRebate Approval 8.JPGRebate Approval 9.JPGRebate Approval 10.JPG

Anonymous
Not applicable

Barry - Following up as this did not solve the problem.

Hi @Anonymous,

 

First of all, your email display is not normal, probably because the "Is html" field in Send an email action is not set to Yes.

In addition, if you use Filter array, then the value used in Apply_to_each should be the value of Filter array output.

You can understand that Filter array is equivalent to filtering the output of Get items, then we configure the following action, it has nothing to do with Get items action.

So when replacing the Dynamic content output from Get items before the replacement, you need to use the items(‘Apply_to_each’)[‘ColumnName’] to get the field value.

You should combine several of my previous posts and you will find the workaround.

I have already tested on my side and that can achieve your needs. Please be patient.

 

Best Regards,

Barry

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

I do not understand what you mean by: "

So when replacing the Dynamic content output from Get items before the replacement, you need to use the items(‘Apply_to_each’)[‘ColumnName’] to get the field value."

Hello Barry @v-bacao-msft  !

Thanks to you and your solution, I just avoided some headaches !

 

I just can't figure out how to add a real clickable link :

 

htmlvar05.PNG

htmlvar02.PNG

Here is the email sent : I would like the link to be a real clickable link. But apparently Flow does not recognize it as a valid HTML ?

htmlvar06.PNG

 

 

 

Thanks for your help !

Gaëlle

Anonymous
Not applicable

Hi

Where is my "Is HTML" ?

Jerryh1975_0-1671532314747.png

 

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 (882)