I am using Power Automate to send emails and I would like to track if the email is being opened/any links are being clicked, is this possible?
The contents of the email are autogenerated and links vary every time, I did think about tagging links but since they change every day that would be effort intense (and manual).
Solved! Go to Solution.
Hi @FraserGreen ,
tracking email clicks is not possible with Power Automate.
Email tracking in general is done by embedding individualized elements (like images) within emails which are loaded from an external server. Then the server tracks which elements are loaded.
Regards,
Leo
----------------------------------------
If my reply answered your question or solved your issue, please mark it as a solution.
If it helped, please give it a thumbs up.
Hi @FraserGreen ,
tracking email clicks is not possible with Power Automate.
Email tracking in general is done by embedding individualized elements (like images) within emails which are loaded from an external server. Then the server tracks which elements are loaded.
Regards,
Leo
----------------------------------------
If my reply answered your question or solved your issue, please mark it as a solution.
If it helped, please give it a thumbs up.
No worries, I had assumed that but was hoping for some sort of add-in/technique to do it in.
It might be worth pointing out that you actually can track email opens with Power Automate. It requires you to use the pixel image tracking method, coupled with a Power Automate HTTP trigger. In the HTML of your email, you place the <img> tag with the source set to the URL generated by your Power Automate flow HTTP trigger. Then in your flow action you return an image blob representation of your single pixel image. Then elsewhere in that same flow, you can do whatever you want to facilitate logging and tracking. For example, you can simply add a record to a SharePoint list. Use of parameters can also help you track specific email campaigns or whatever.
I got the idea for this from this post about using a similar method to track Power BI report activity:
PBIPixel.png (1×1) (datachant.com).
Hope that helps.
Hi,
you tried this method? Can you show in working order?
I'm trying to achieve the same , but don't know how to put this in order.
Using some of the ideas from @planetparker, I was able to figure this out and track email opens from Power Automate. This took me 2 separate flows, plus the api link embedded in whatever other flows you send emails from. Here is a sample of the flow:
There were 2 areas of complication when creating this process.
You take the url from the "When a HTTP request is received", place it in an img tag as the src (ie. <img src="api address" height="1" width="1">), replace your unique parameter with a value unique to the email, and place it at the bottom of the html email in the flow where you are sending an email from.
Then you need a flow with the trigger "When a new email arrives" (I used when a new email arrives in a shared mailbox v2). In this flow, you add your email data to your database along with the unique id that was embedded into the body if the email previously so that you can search the database when the api is called.
This is simpler than I thought, but it does come with its complications. I would be happy to provide more details and examples if someone comes across this and wants to add this.
Hi! Could you share more details? I would like to build this cloud flow! It will help me!
@JoseAntonio22 Are you looking to track email clicks or email views from emails sent through power automate?
Track emails clicks from emails through power automate!
@JoseAntonio22 Sorry for the delay. There are two flows that need to be created in order to track emails click.
Flow 1:
Flow 2:
This is a very consolidated description of how this is done so please let me know what questions you have throughout the process. This looks more complicated than it is, but it is fairly simple overall.
Hi @PJS-Data-Admin,
is that parsing not overly complicated for this use case.
Instead of parsing the whole url and encoding/decoding it, you can simply utilize the queries parameters of the "When an HTTP request is received" trigger.
So you could pass something like the following url in the email:
https://prod-110.westeurope.logic.azure.com:443/workflows/[flowID]/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=[sig]&subject=[Email Subject]&trackingid=[trackingID]
Then the trigger will do the work for you and you can simply access the subject and trackingid via the queries parameter:
triggerOutputs()?['queries/subject']
triggerOutputs()?['queries/trackingid']
Regards
----------------------------------------------------------
If my answer helped you, please give it a thumbs up.
@leo85 The encoding is mainly for passing a clickable URL through another URL. When the email is sent, there is a clickable button in the email with a redirect URL that is created during that flow run. When the button is clicked, it triggers the "When an HTTP request is received" trigger which then decodes the redirect URL, not the entire request URL. The response then sends the user to the correct URL using JavaScript and proceeds to track the details. I added some examples below:
replace(replace(replace(replace(outputs('Original_email_link_value'), '/', '_slash_'), '.', '_dot_'), '?', '_qmark_'), ':', '_colon_')
replace(replace(replace(replace(triggerOutputs()['relativePathParameters']['redirecturl'], '_slash_', '/'), '_dot_', '.'), '_qmark_', '?'), '_colon_', ':')
There are probably other ways to do this, but this is what has worked for me. I have not worked with the queries parameter in Power Automate yet, do you have an example?
Can I apply this same functionality in a timeline, specifically using email templates?
@JoseAntonio22I believe so but I have not tested. I mainly use this tracking functionality on internal company emails. I have an HTML email template that I use in all automated emails and I just replace the url with the tracker url.
https://prod-110.westeurope.logic.azure.com:443/workflows/[flowID]/triggers/manual/paths/invoke?api-... &sig=[sig]&subject=[Email Subject]&trackingid=[trackingID]
How can I get the email subject and trackingid dynamically? That is, the template takes those internal values and thus can send the data dynamically.
Speaking in the context of the model driven app email template.
@JoseAntonio22 I have not worked with model driven app email templates, but this mentions some details: https://learn.microsoft.com/en-us/power-apps/user/email-dynamic-text
For tracking ID, I use the ID from the flow run in Power Automate so that I do not need to create my own unique tracking ID:
workflow()?['run']['name']
Above may need to be adjusted if you are sending multiple emails in the same flow.
All of this tracking, for me, is done through flows that send emails, record emails, and track clicks. That is how i am able to get all the dynamic values without issue.
Hi @PJS-Data-Admin , thank you for your helpful examples! Do you have any idea on how to track email views? Thank you!
@izlim It is the same concept and structure as tracking email clicks, but there are some nuances to this one. This tracking method is not 100% accurate since Apple products block tracking pixels, but it does work. I only use this for internal company emails as there are laws that need to be followed when it comes to email tracking for marketing emails. See some samples below:
This is a basic summary but let me know if you have any questions or issues!!
I have a similar flow nearly built but something is just off. It's throwing a 401 authentication error for some reason. My img is in open/public accessible blob and the 401 is preventing the trigger of the second flow to run. Any help much appreciated. Not sure if possible to connect via chat or zoom or something.
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!
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
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.
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