Power Automate Email Templates Made Easy

Power Automate Email Templates Made Easy

Power Automate email templates can show dynamic values from SharePoint as part of a beautifully formatted message. I’ve researched the best method to create responsive Power Automate email templates and I’ll show you where to find templates, how to add dynamic values and include images. You can customize it even further with your knowledge of HTML and CSS.

Table of Contents
• Introduction: The New Project Task Email NotificationSetup The SharePoint ListTrigger The Flow When An Item Is CreatedSelect An HTML Email TemplateSend The Email Template To The Assigned PersonFill-In The Email Template With Dynamic ValuesLink The "Open Project Task Button" To The SharePoint List ItemGet A Logo Image From A SharePoint Document LibraryEmbed A Logo Image Into An Email TemplateSend An Email Template With A Logo Image




Introduction: The New Project Task Email Notification

The project management department of a company uses Power Automate to notify team members when a new task is assigned to them. An responsive HTML email is sent with the company’s logo, details about the project task and a clickable button to open the task in a web browser.




Setup The SharePoint List

Create a SharePoint list named Project Tasks with the following columns:

  • Title (single line of text)
  • Description (multiple lines of text)
  • Status (choices: Not Started, In Progress, Completed)
  • AssignedTo (person type)



Populate the SharePoint list with this data:


TitleDescriptionStatusAssignedTo
Homepage RedesignOverhaul the homepage layout and content to create a more engaging user experience. Tasks include redesigning visual elements, optimizing call-to-action buttons, updating featured content, and ensuring mobile responsiveness for seamless viewing across devices.CompletedMatthew Devaney
Navigation RestructuringImprove website navigation by reorganizing menu structures, categorizing content more effectively, and implementing intuitive search functionality. Responsibilities include conducting user experience (UX) audits, creating new navigation pathways, and testing usability across various browser platforms.In ProgressSarah Green
Content MigrationTransfer and update existing website content to align with the new design and branding guidelines. Tasks involve reviewing and editing content for accuracy and relevance, optimizing images and multimedia elements, and ensuring consistent formatting throughout the site.Not StartedMary Baker
Performance OptimizationEnhance website performance by optimizing page load times, implementing caching strategies, and minimizing server requests. Responsibilities include conducting performance audits, optimizing codebase, and integrating Content Delivery Network (CDN) solutions for faster content delivery.CompletedMatthew Devaney
Accessibility ComplianceEnsure the website meets accessibility standards by implementing features that accommodate users with disabilities. Tasks include conducting accessibility audits, incorporating keyboard navigation, adding alternative text for images, and ensuring compliance with Web Content Accessibility Guidelines (WCAG) standards.In ProgressDavid Johnson



The Project Tasks list will look like this after it is setup.




Trigger The Flow When An Item Is Created

Open Power Automate and create a new automated flow. Select the trigger named SharePoint – When An Item Is Created and choose the Project Tasks list.



Add a Data Operations – Compose action beneath the trigger. We will fill the inputs field of the compose action with the email template body.




Select An HTML Email Template

There are many places on the internet to find email templates. Using the Google search terms “Responsive Transactional Email Templates” I found several good options. We will use a free template provided by Mailgun. Go to Mailgun’s transactional email templates Github repository and open the templates folder.



Browse to the location mailgun/transactional-email-templates/templates/inlined/action.html. This template has the CSS inlined which is required for sending HTML email.



Copy and paste the HTML of the email template into the Compose action in Power Automate.




Send The Email Template To The Assigned Person

Before we fill-in the email template let’s try to send it to a recipient to ensure it works. Add an Office 365 Outlook – Send An Email (V2) action with the AssignedTo column in the To field. Include the Title column in the Subject line and use the Outputs of the Compose action in the email Body.



Test run the flow.



The HTML responsive email template looks like this.




Fill-In The Email Template With Dynamic Values

We want Power Automate to fill-in the email template with values from the new SharePoint list item. First we will insert the Title into the template. Locate the text “Please confirm your email address…” inside of the Compose action.



Then replace it with this code:

<h4>NEW Project Task - @{triggerOutputs()?['body/Title']}</h4>



Next, find the text “We many need to send you critical information…”.



And replace it with the Description of the SharePoint list item instead.

When the email recipient presses the “Open Project Task” button it should navigate them the SharePoint list item in a web browser. Find the the HTML <a> tag with a link to mailgun.com and the text “Confirm Email Address.”



Replace the mailgun.com link with the SharePoint Link to item value and use the text “Open project task” instead.



Remove “&mdash; The Mailgunners” from the HTML code.



Resend the test email. The email template is now filled with dynamic values from SharePoint




Get A Logo Image From A SharePoint Document Library

As a final touch we can add a company logo image to the email template. Go to logoipsum.com and download any sample svg image.



Create a new SharePoint document library named HTML Email Resources and save the logo image to it.




Then go back into the flow an add a SharePoint – Get File Content Using Path step after the trigger. Select the logo image we just uploaded to SharePoint.




Embed A Logo Image Into An Email Template

Now we will embed the logo image into the email template using the Content-ID method. Locate the table tag shown in the screenshot below and insert the new <img> tag code inside of the red box.



Copy and paste this code into the Compose action. Make sure the filename matches the logo image stored in SharePoint.

<img src="cid:logoipsum-htmlemail.svg" /></br>



Update the Send An Email action to include an attachment. Use the same attachment name and extension as in SharePoint and supply the Body of the get content action to the attachments field.




Send An Email Template With A Logo Image

To see the logo image appear in the email give the flow a test run.



The logo image appears at the top of the email.






Questions?

If you have any questions or feedback about Power Automate Email Templates Made Easy please leave a message in the comments section below. You can post using your email address and are not required to create an account to join the discussion.

Matthew Devaney

Subscribe
Notify of
guest

18 Comments
Oldest
Newest
Inline Feedbacks
View all comments
Mark K
Mark K
2 months ago

Hi Matthew, I love the summary above. Sending personalised emails indeed has a huge business value that Power Platform brings in, hence it has been a project in my team for quite a while now.

Our goal is to go even step further and build a WYSIWYG type of email editor in PowerApps that first displays a custom email (using the HtmlText control), and then sends it out to the specified sets of audiences.

However one obstacle that we can’t stop struggling with is the very end of the process – making sure the html code renders properly in all Outlook clients that are used across our organization. Do you have any advice or cheat sheet that could serve as a guide as to which html / css styling is supported in the older versions of outlook? As of now, even though our flow set up for sending emails works perfectly fine, designing email templates (or using ready made templates from the internet) is virtually impossible as we never now how the message is going to end up rendering in the end.

Kudos for your work and greetings from Poland 🇵🇱

Mikaël Dias
Mikaël Dias
2 months ago

This is a very interesting article and could have saved me a lot of time when we set up a similar flow to manage all the notifications sent by PowerAutomate. Even if it does take time to set up, once it’s in place, adding a notification with the right ‘style/crumb/header/logo/…’ only takes a few minutes.

In our project, we went one step further
– Different branding
– Different types of templates (1 column, 2 columns)
– Different layouts (Buttons, datalist, etc.)

But it’s all easy to use because everything is managed centrally in a few sharepoint lists. This is much more practical than dozens of different flows, each sending emails in their own way.

The biggest problem is the button design (border-radius, hover…). The text is different, you can’t use images. If you reply, the layout gets really ugly. If you have time to find a solution, I’d be very happy to read it.

Mark K
Mark K
2 months ago
Reply to  Mikaël Dias

Hi Mikael, I’m working on a very similar project. I can only say my team also struggles with the buttons, the best solution we found is to design the button as a static image, and then convert it to base64 before embedding into the email.

Have you considered making your solution with SP lists open source? I’d love to see how you approached it.

Brian
Brian
2 months ago

Perfect timing! I was just working on a multi stage approval workflow and didn’t know this was possible. Thanks!

Oyeleye Abayomi
Oyeleye Abayomi
2 months ago

Hello Matthew,
Thanks alot for sharing this,
I was working on a complaint form that employee could enter a multi-line text and the team lead email address.

However, I noticed the multi-line message wasn’t keeping the text paragraph Format. It just sends the long message to my outlook as a single line. This made me gave up on that project.

Any idea as to how I could get this solved?

Roystreet
Roystreet
2 months ago

Hi Matthew, what are the benefits of using the flow instead of just using code in the app❓ This can simply done by some code in the app with the 365 connector — My point is, this might be worth using if it has a good advantage over what I use now. Thanks for your input!

Frank Nielsen
Frank Nielsen
2 months ago

Thanks for a great walkthrough. I was nearly missing the last step of adding the logo as an attachement 🙂

And a great tip with the “cid” method. I did not know the existens of this.

/Frank

Kate
Kate
2 months ago

i enjoyed your articles. thanks

fadi
fadi
1 month ago

thank you ,awesome

Tina
Tina
1 month ago

Hi Matthew, thanks for the post! I learn so much from your blog.
Just a quick question, waht type of Microsoft 365 subscription sould i have in order to send email? I currently have Microsoft 365 Apps for business and got a connection error when i chose Send an email(V2) action.

According to the pricing page, i should upgrade to the Standard Plan at least, right?

Thanks!

Tina
Tina
1 month ago

My apology. Here is the warning message i saw. I do have a premium (paid) PowerApps license , but only the basic plan for Microsoft 365 Apps, that comes with all the office suite, but not email capability. Seems like i need to upgrade my 365 plan?

Thanks for your reply, Matthew.
BTW, greetings from Taiwan : )

擷取.JPG