cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
DaTeusz
Regular Visitor

Adding attachments from email to Planner task with link to email itself (saving attachments to sharepoint and adding the link to email itself)

Hi Guys!

I have created a flow that triggers when user gets an email that mentiones him/her and then:

  1. Flow gets email attachments and saves it in specific folder at sharepoint.
  2. Creates a task in Planner.
  3. Assigns user who is mentioned in the mail to the task.
  4. Adds links to saved attachments to the task (using append to array).
  5. Assigns due date (if there is specific text in email body) - if not leaves it empty.

The Flow looks like this:

DaTeusz_0-1712819878629.png

DaTeusz_1-1712819887281.png

DaTeusz_2-1712819894500.png

DaTeusz_4-1712819986720.png

(sorry for the Polish names of items and actions).

 

This works great but what i want to do is to add a link to emai itself as well in the task.

 

I have worked it out how to get the link to an email (steps from the 2nd screen):

  • Compose emailLinkDaTeusz_8-1712820957436.png 
  • Compose emailLinkoutDaTeusz_6-1712820255495.png(resourcelink takes outputs from compose emailLink).

     

  • Append to array 2DaTeusz_7-1712820280813.png(value takes outputs from compose emailLinkout

     

In the 3rd screen we have steps that gets the attachments, gets attachments properties, compose that looks like this: 

DaTeusz_9-1712821054234.png

and append to array with outputs from compose that is above.

 

I have put it under condition because all of our company emails has our company logo at the bottom of each email and I don't want to save it to the sharepoint so I am skipping attachments called like our company logo file.

 

In the final steps (updating task details) we have this:

DaTeusz_10-1712821124555.png

("Załączniki" is the reference to append to array I just mentioned above).

 

I have some issues with "merging" two arrays to Update task details. Using only one of them in Update task details references works perfectly well - it adds links to attachments saved to sharepoint or link to an email. I can't combine it into one so it will give mi the task with links to attachments and link to an email itself.

 

I have tried to do it step by step by Updating task details twice:

DaTeusz_11-1712821278968.png

but this is not working.

 

Do you have any ideas how to solve it?

2 ACCEPTED SOLUTIONS

Accepted Solutions
ManishSolanki
Super User
Super User

Hi @DaTeusz 

 

You can use union function to merge 2 arrays. Here is the sample:

ManishSolanki_0-1712823835329.png

[
{
"alias": "test1",
"resourceLink": "link1",
"type": "others"
}
]

ManishSolanki_1-1712823865886.png

[
{
"alias": "test2",
"resourceLink": "link2",
"type": "others"
}
]

Add another compose action to merge both arrays using an expression. To apply function, expression need to be added in the expression box as shown below:

ManishSolanki_2-1712823977839.png

union(outputs('Compose'),outputs('Compose_2'))

You can pass the final merged array to the update task details action.

 

 

Output:

ManishSolanki_3-1712824090337.png

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

View solution in original post

Hi @DaTeusz 

 

The issue is appending json object in compose action inside loop. I would suggest using variables and append object in each variable inside loop. Don't use [] while appending object in array variables, just use the below object:

{
"alias": "<dynamic content>",
"resourceLink": "<dynamic content>",
"type": "others"
}

 

Take union of both variables outside "Apply to each" action in a compose action and pass that compose in references parameter.

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

View solution in original post

11 REPLIES 11
ManishSolanki
Super User
Super User

Hi @DaTeusz 

 

You can use union function to merge 2 arrays. Here is the sample:

ManishSolanki_0-1712823835329.png

[
{
"alias": "test1",
"resourceLink": "link1",
"type": "others"
}
]

ManishSolanki_1-1712823865886.png

[
{
"alias": "test2",
"resourceLink": "link2",
"type": "others"
}
]

Add another compose action to merge both arrays using an expression. To apply function, expression need to be added in the expression box as shown below:

ManishSolanki_2-1712823977839.png

union(outputs('Compose'),outputs('Compose_2'))

You can pass the final merged array to the update task details action.

 

 

Output:

ManishSolanki_3-1712824090337.png

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin
DaTeusz
Regular Visitor

Hi @ManishSolanki !
We are few step closer to the result for sure but still I have some issues.
An error occured:

DaTeusz_0-1712828356020.pngDaTeusz_1-1712828363166.png

The output of the merge compose is correct:

DaTeusz_2-1712828427431.png

DaTeusz_3-1712828449544.png

But the error remains as above.

 

As far I as I am concerrned it's about setting here:

DaTeusz_4-1712828511045.png

But I thought that it has to be an array so flow will add as many attachments as it finds with for each action?

Hi @DaTeusz 

 

Pls try using a compose action for merging the arrays. Use union function in the form of expression in compose action to get the final array.

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

 

Thanks
Manish Solanki
View my blog
Linkedin
DaTeusz
Regular Visitor

Hi @ManishSolanki 

I did it right at the beginnign as you mentioned in first reply, and it's here:

DaTeusz_0-1712843894190.png

DaTeusz_1-1712843905687.png

It's build as you said:

DaTeusz_2-1712843927770.png

Should I delete the final step (append to array)?:

DaTeusz_3-1712843982981.png

But what should I do with outputs from this compose?

1. Put it to append to array - then output from it to references in update task details?

or

2. Put it stright to references in update task details?

 

Sorry if questions are silly but I can't move on with this.

Hi @DaTeusz 

 

Firstly, pls verify the array elements values in compose action from the flow run instance. If compose contains all the reference links, then pass the output of compose action directly in update tasks details action.

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin
DaTeusz
Regular Visitor

Hi @ManishSolanki.

Yes, compose action has all of the links - and the structure is correct I belive:

DaTeusz_0-1712904802441.png

I put the outputs of this compose directly to update task details references but an error came up:

DaTeusz_2-1712904983225.pngDaTeusz_3-1712905023517.png

 

 

Hi @DaTeusz 

 

Pls pass the output of compose action directly into references parameter as shown below:

ManishSolanki_0-1712909105176.png

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin
DaTeusz
Regular Visitor

Hi @ManishSolanki 

It's not possible. Or I'm doing it wrong. 

 

First compose (with links from email) is in the loop for each. Second compose (with links from sharepoint) is in the same loop for each but under condidion. Then there is compose wit union expression.

DaTeusz_0-1712912350433.png

When I try to add it in update task details in references I can't see compose 'Połącz' (with union expression).

DaTeusz_1-1712912466202.png

That is why I added it earlier as an expression I have sent before.

 

DaTeusz
Regular Visitor

What may be important:
the output from compose with sharepoint links is:

DaTeusz_0-1712914035201.png

Output from compose with email links is:

DaTeusz_1-1712914078258.png

But the output from compose with union expression has more brackets and the null value:

DaTeusz_5-1712914245100.png

 

Hi @DaTeusz 

 

The issue is appending json object in compose action inside loop. I would suggest using variables and append object in each variable inside loop. Don't use [] while appending object in array variables, just use the below object:

{
"alias": "<dynamic content>",
"resourceLink": "<dynamic content>",
"type": "others"
}

 

Take union of both variables outside "Apply to each" action in a compose action and pass that compose in references parameter.

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin
DaTeusz
Regular Visitor

Finally!
I tried to use your advice with not to use the brackets [] but then union expression didn't work - output was only one attachment, not the link to mail.

 

What I did was:

  1. Put compose with union expression outside the for each loop.
  2. Had to add next step with filter an array to exclude the null result that came up in output from union expression compose.
  3. Then put the body from filter an array in update task details in references.

So the final steps in the flow looks like this:

DaTeusz_0-1712918105587.png


@ManishSolanki thank you so much for sharing your knowledge and a lot of patience for beginners like me!

Helpful resources

Announcements

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.       This Week: All About Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most. Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Users online (2,949)