Hi all,
I've a question about how to create a flow that check all the items in a flow and send an e-mail to all the companies that are stored in the list.
For your information, I've a flow with multiple customers inside. For some customers, there are multiple line items, I need to merge the information into one e-mail. Every customer has an identical relation number, so that's a matching point in the list that can be used.
The list is created as follow:
Now I need to send every customer ONE (1) e-mail about the changes. Because it's possible that a customer have multiple line items, it's required that every customer get one e-mail with all the list items that's matched with his relation number.
Example e-mail:
Dear relation,
Whe will let you know that your pickup day(s) will be changed:
Your current pickup day for Contract A Monday will be changed to Saterday.
Your current pickup day for Contract B will be changed to Friday.
Etc.
How can I achieve this?
(The trigger is when I push a button).
Thanks in advance.
Solved! Go to Solution.
Hi @dennisb88,
You could following these steps to do that:
First part, get all items in the list and store Email addresses into an array variable, then use union() function to remove repeat email addresses.
union(outputs('Compose'),outputs('Compose'))
Second part, initialize a string variable to store the Email body, Then use Apply to each action to loop the Email address in part 1, then use Get items with filter query:
Contacte_x002d_mailAddress eq '@{item()}'
Then append each line into the string variable, after all rows about current customer in it, send email and empty the string variable for next customer.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dennisb88,
You could following these steps to do that:
First part, get all items in the list and store Email addresses into an array variable, then use union() function to remove repeat email addresses.
union(outputs('Compose'),outputs('Compose'))
Second part, initialize a string variable to store the Email body, Then use Apply to each action to loop the Email address in part 1, then use Get items with filter query:
Contacte_x002d_mailAddress eq '@{item()}'
Then append each line into the string variable, after all rows about current customer in it, send email and empty the string variable for next customer.
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
28 | |
27 | |
27 | |
20 | |
10 |