<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Seisay IT Solutions | </title>
	<atom:link href="https://seisayitsolutions.com/category/power-automate/feed/" rel="self" type="application/rss+xml" />
	<link>https://seisayitsolutions.com</link>
	<description>Office365 Consulting and Web Development</description>
	<lastBuildDate>Sat, 09 Mar 2024 17:37:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://seisayitsolutions.com/wp-content/uploads/2016/05/cropped-full-logo-1-32x32.png</url>
	<title>Seisay IT Solutions | </title>
	<link>https://seisayitsolutions.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Use Microsoft Flow to Separate Site Pages and News Posts</title>
		<link>https://seisayitsolutions.com/use-microsoft-flow-to-separate-site-pages-and-news-posts/</link>
					<comments>https://seisayitsolutions.com/use-microsoft-flow-to-separate-site-pages-and-news-posts/#respond</comments>
		
		<dc:creator><![CDATA[contact@seisayitsolutions.com]]></dc:creator>
		<pubDate>Wed, 14 Nov 2018 19:49:36 +0000</pubDate>
				<category><![CDATA[Power Automate]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://www.seisayitsolutions.com/?p=888</guid>

					<description><![CDATA[Requirement: News posts need to be added to a SharePoint site for a company portal.  There should also be an archive of all news posts. SharePoint stores all news posts and pages in the Site Pages library.  The goal was to keep customizations simple: when...]]></description>
										<content:encoded><![CDATA[<p><strong>Requirement</strong>: News posts need to be added to a SharePoint site for a company portal.  There should also be an archive of all news posts. SharePoint stores all news posts and pages in the Site Pages library.  The goal was to keep customizations simple: when people select <strong>Add a page</strong> those pages are stored in the Site Pages. The news posts (stored in the same library) needed to be filtered out to create an archive of only news posts.</p>
<p><strong>Overview</strong>: One of the distinguishing factors between a news post versus a regular page is that news posts have the <strong>Promoted State</strong> column value set to ‘2’. There is no way to easily create a view to filter out this value to see all news posts only.</p>
<p>A Microsoft Flow is used to retrieve the <strong>Promoted State</strong> value. The reason for selecting the SharePoint &#8211; When an item is created or modified action (in Step 2 below) is that when the post/page doesn’t have a title, SharePoint will assign the post/page random characters until the <strong>Title</strong> has been added. Once the <strong>Title</strong> has been added, SharePoint will update the actual post/page with the actual <strong>Title</strong> and sometimes the <strong>Promoted State</strong> isn’t initially assigned to the column.</p>
<p><span style="text-decoration: underline;"><strong>Brief Solution:</strong></span></p>
<ul>
<li>Create a <strong>News</strong> column in the <strong>Site Pages</strong> library</li>
<li>Create a Flow that checks if the <strong>Promoted State</strong> = 2. If <strong>Promoted State</strong> = 2, update the <strong>News</strong> column with value ‘Yes’</li>
<li>Create a view called <strong>News Archive</strong> that filters the <strong>Site Pages</strong> library where the <strong>News</strong> column equals ‘Yes’</li>
</ul>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>Detailed Solution:</strong></span></p>
<p>1. In the <strong>Site Pages</strong> library, create a column called <strong>News</strong>. To keep it simple, choose Single line of text as the column value. (Choice could be used as the column type.)</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section1.png"><img fetchpriority="high" decoding="async" class="alignnone wp-image-889" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section1-300x144.png" alt="" width="400" height="192" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section1-300x144.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section1.png 663w" sizes="(max-width: 400px) 100vw, 400px" /></a></p>
<p>&nbsp;</p>
<p>2. Create a Flow to set the value of the <strong>News </strong>column when a news post is created.</p>
<p>Trigger: Even though <strong>Site Pages</strong> is a library and not a list, select the <strong>SharePoint &#8211; When an item is created or modified</strong> trigger, select the site, and type in <strong>“Site Pages”</strong> as a custom value. (<strong>Site Pages</strong> do not appear in the list of library type of triggers.)</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section2.png"><img decoding="async" class="alignleft wp-image-890" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section2.png" alt="" width="600" height="158" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section2.png 884w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section2-300x79.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section2-768x202.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section2-700x185.png 700w" sizes="(max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>3. Add a <strong>Condition</strong> action, Select the <strong>PromotedState</strong> column, leave the default as <strong>is equal to</strong> and type in ‘2’.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section3.png"><img decoding="async" class="alignleft wp-image-891" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section3.png" alt="" width="600" height="124" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section3.png 878w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section3-300x62.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section3-768x158.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section3-700x144.png 700w" sizes="(max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>4. In the <strong>Yes</strong> branch, select the <strong>SharePoint &#8211;</strong> <strong>Update item</strong> action to set the Site Pages library <strong>News</strong> column as ‘Yes’.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section4.png"><img loading="lazy" decoding="async" class="alignleft wp-image-892" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section4.png" alt="" width="600" height="334" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section4.png 861w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section4-300x167.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section4-768x427.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section4-700x389.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>5. Name the Flow and Save. The full Flow should look similar to this:</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section5a.png"><img loading="lazy" decoding="async" class="alignleft wp-image-893" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section5a-1024x650.png" alt="" width="600" height="381" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5a-1024x650.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5a-300x190.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5a-768x487.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5a-700x444.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5a.png 1059w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Make sure it’s turned on!</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section5b.png"><img loading="lazy" decoding="async" class="alignleft wp-image-894" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section5b-1024x188.png" alt="" width="600" height="110" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5b-1024x188.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5b-300x55.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5b-768x141.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5b-700x129.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section5b.png 1084w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>6. Back in the SharePoint <strong>Site Pages</strong> library, create a view called <strong>News Archive.</strong></p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section6a.png"><img loading="lazy" decoding="async" class="alignleft wp-image-895" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section6a.png" alt="" width="600" height="116" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6a.png 892w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6a-300x58.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6a-768x149.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6a-700x136.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Filter the view to only show where <strong>News</strong> is equal to <strong>Yes</strong> (which will be set by the Flow).</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section6b.png"><img loading="lazy" decoding="async" class="alignleft wp-image-896" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section6b.png" alt="" width="600" height="159" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6b.png 868w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6b-300x79.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6b-768x204.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section6b-700x185.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Let’s Test!</strong></p>
<p>Back on the Home Page (or a page with the News webpart), add a link to the News Archive view (or even a link to a Page with the News Archive view), then add a News post:</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section7.png"><img loading="lazy" decoding="async" class="alignleft wp-image-897" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section7.png" alt="" width="600" height="308" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section7.png 1449w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section7-300x154.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section7-768x394.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section7-1024x525.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section7-700x359.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Add a Site Page:</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section8.png"><img loading="lazy" decoding="async" class="alignleft wp-image-898" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section8.png" alt="" width="600" height="292" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section8.png 1449w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section8-300x146.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section8-768x373.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section8-1024x498.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section8-700x340.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The Site Pages library gets updated automatically by the Flow to flag news posts appropriately.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section9.png"><img loading="lazy" decoding="async" class="alignleft wp-image-899" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section9.png" alt="" width="600" height="219" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section9.png 1449w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section9-300x110.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section9-768x281.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section9-1024x375.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section9-700x256.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>When the News Archive link is clicked on from the home page, only the news post items appear.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section10.png"><img loading="lazy" decoding="async" class="alignleft wp-image-900" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/11/Section10.png" alt="" width="600" height="199" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/11/Section10.png 1444w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section10-300x100.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section10-768x255.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section10-1024x340.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/11/Section10-700x233.png 700w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Thanks for reading!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seisayitsolutions.com/use-microsoft-flow-to-separate-site-pages-and-news-posts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Flow: Reusable Email Content</title>
		<link>https://seisayitsolutions.com/microsoft-flow-reusable-email-content/</link>
		
		<dc:creator><![CDATA[contact@seisayitsolutions.com]]></dc:creator>
		<pubDate>Thu, 04 Oct 2018 03:51:26 +0000</pubDate>
				<category><![CDATA[Power Automate]]></category>
		<guid isPermaLink="false">http://www.seisayitsolutions.com/?p=745</guid>

					<description><![CDATA[Overview: Microsoft Flow has a lot of capabilities for automating processes using triggers, actions, and conditions.  While working on a project with a variety of emails to different users in the organization, there was a need to standardize the emails without having to re-produce branding...]]></description>
										<content:encoded><![CDATA[<p>Overview: Microsoft Flow has a lot of capabilities for automating processes using triggers, actions, and conditions.  While working on a project with a variety of emails to different users in the organization, there was a need to standardize the emails without having to re-produce branding manually in all these emails.  This solution stores all branding elements in a SharePoint list, which is then re-used in all the emails.  The goal is to be able to update the SharePoint list and all changes will be reflected in all the Flow emails.</p>
<p>Flow Scenario: This is an Event Request approval process that needs approval from a Manager first. Once the Manager approves the request, the Director receives an email to Approve or Reject the request.  The initiator then receives the final email that states if the request has been approved or rejected.</p>
<a  itemprop="url" href="#video" target="_self"  class="qbutton  default" style="">Video Explanation</a>
<p>&nbsp;</p>
<h3>Plan Your Process Structure and Email Message Structure</h3>
<p>It&#8217;s important to map out the business process with flow diagrams to help keep track of which Flows need to be created and thoroughly capture all business logic. Mapping out the strategy first helps to understand what needs to be built as a visual reference.</p>
<p>Mapping out what is required in the emails and consistently used across emails is important in the beginning as well. Advanced expressions can be used to display information in the email only if there is a value.</p>
<p>&nbsp;</p>
<h3>Create a SharePoint list</h3>
<p>Create a Custom List called Event Request. This holds the Event details along with Manager and Director approvals.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList.png"><img loading="lazy" decoding="async" class="alignnone wp-image-748 size-large" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList-1024x287.png" alt="" width="1024" height="287" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList-1024x287.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList-300x84.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList-768x215.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList-700x196.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/EventRequestList.png 1640w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Create another Custom List app called &#8220;Branding&#8221;. This list holds all the HTML/CSS Branding elements that will be used in the emails.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Branding.png"><img loading="lazy" decoding="async" class="alignnone wp-image-749 size-large" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Branding-1024x288.png" alt="" width="1024" height="288" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding-1024x288.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding-300x84.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding-768x216.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding-700x197.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding.png 1641w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Columns used:</p>
<ul>
<li>The <strong>MessageOpening</strong> and <strong>MessageClosing</strong> &lt;div&gt; tags will be the container for the message.</li>
<li><strong>ApprovalLink</strong> contains a URL to my Dashboard. If the link changes in the list, all Flows are always pointing to the correct link.</li>
<li><strong>ManagerApprovedEvent </strong>and<strong> DirectorApprovedEvent </strong>will have green text for the event request status as being approved.</li>
<li><strong>ManagerRejectedEvent </strong>and<strong> DirectorRejectedEvent </strong>will have red text for the event request status as being rejected.</li>
<li><strong>Banner</strong> will have a background color and some additional formatting to the text.</li>
</ul>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Branding2.png"><img loading="lazy" decoding="async" class="alignnone wp-image-751 size-large" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Branding2-1024x523.png" alt="" width="1024" height="523" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding2-1024x523.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding2-300x153.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding2-768x392.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding2-700x358.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Branding2.png 1642w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>&nbsp;</p>
<h3>Create Your Flow</h3>
<p>Add a trigger for the EventRequest and an Action to get the Branding list.  These examples use the “When item is created (and/or modified)”, however, the Recurrence trigger can be used as well.</p>
<p>Using the Outlook Send an Email Action, add the SharePoint columns to the Message Body. All of the SharePoint columns from the Branding list are in the <strong>Get item</strong> section.</p>
<p>Be sure to select “Show Advanced options” and Select <strong>Is HTML</strong> “Yes”.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow1.png"><img loading="lazy" decoding="async" class="wp-image-752 size-large aligncenter" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow1-1024x877.png" alt="" width="1024" height="877" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow1-1024x877.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow1-300x257.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow1-768x658.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow1-700x599.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow1.png 1309w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Use Expressions to Conditionally show content in the email only when the Manager or Director has added a comment. Otherwise, don’t include the information in the email.</p>
<p>Example formula will append the comment after the “Manager Approval Decision” text:</p>
<p>if(equals(triggerBody()?[&#8216;ManagerDecision&#8217;], null), &#8221;, concat(&#8216;&lt;strong&gt;Manager Approval Decision:&lt;/strong&gt; &#8216;, triggerBody()?[&#8216;ManagerDecision&#8217;]))</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow2.png"><img loading="lazy" decoding="async" class="wp-image-753 size-large aligncenter" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow2-1024x671.png" alt="" width="1024" height="671" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow2-1024x671.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow2-300x197.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow2-768x503.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow2-700x459.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow2.png 1311w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<h2></h2>
<h2></h2>
<p>&nbsp;</p>
<h3>Test the Flow</h3>
<p>Label and rename the Actions, Conditions, Switches to make the Flows more readable.</p>
<p>Labeling the Subject line with “who” the email should be sent to is helpful with testing to ensure that the Flows are sending emails to the appropriate users.</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow3.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-755 size-large" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow3-1024x536.png" alt="" width="1024" height="536" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow3-1024x536.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow3-300x157.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow3-768x402.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow3-700x366.png 700w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Flow3.png 1307w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>&nbsp;</p>
<h3>Final Product</h3>
<p>Initial Email with Approval Link Sent to Manager</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email1.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-758 size-full" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email1.png" alt="" width="1321" height="711" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Email1.png 1321w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email1-300x161.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email1-768x413.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email1-1024x551.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email1-700x377.png 700w" sizes="auto, (max-width: 1321px) 100vw, 1321px" /></a></p>
<p>Once Manager Approves, Director Receives Notification of Status and Approval Link</p>
<p><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email2.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-756 size-full" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email2.png" alt="" width="1308" height="831" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Email2.png 1308w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email2-300x191.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email2-768x488.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email2-1024x651.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email2-700x445.png 700w" sizes="auto, (max-width: 1308px) 100vw, 1308px" /></a></p>
<p>The Initiator Receives the Final Email with Comments<a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email3.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-757 size-full" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Email3.png" alt="" width="1302" height="740" srcset="https://seisayitsolutions.com/wp-content/uploads/2018/10/Email3.png 1302w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email3-300x171.png 300w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email3-768x436.png 768w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email3-1024x582.png 1024w, https://seisayitsolutions.com/wp-content/uploads/2018/10/Email3-700x398.png 700w" sizes="auto, (max-width: 1302px) 100vw, 1302px" /></a></p>
<h3><a id="video"></a>Video Explanation</h3>
<div style="width: 1060px;" class="wp-video"><video class="wp-video-shortcode" id="video-745-1" width="1060" height="651" preload="metadata" controls="controls"><source type="video/mp4" src="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow-Reusable-Content.mp4?_=1" /><a href="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow-Reusable-Content.mp4">http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow-Reusable-Content.mp4</a></video></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
		
		<enclosure url="http://www.seisayitsolutions.com/wp-content/uploads/2018/10/Flow-Reusable-Content.mp4" length="46081397" type="video/mp4" />

			</item>
	</channel>
</rss>
