Question

ING
Last activity: 3 Oct 2025 3:45 EDT
Configure URL for navigating directly to a specific page in a user portal from an email (Correspondence fragment)
A specific user will receive an email after a case rejection. The content of the email should contain a hyperlink that will redirect the user to a specific page inside the user portal once clicked.
I can only open the portal using the correspondence fragment snippet below, I want to redirect the user to the specific XXXXX Reports page once the link is clicked.
A specific user will receive an email after a case rejection. The content of the email should contain a hyperlink that will redirect the user to a specific page inside the user portal once clicked.
I can only open the portal using the correspondence fragment snippet below, I want to redirect the user to the specific XXXXX Reports page once the link is clicked.
/****** CODE BLOCK ****** / <% String PublicLinkURL = pega_rules_utilities.getDataSystemSetting("XXXXX", "PublicURL"); String RedirectLocation = pega_rules_utilities.pzEncryptURLActionString( tools, "Global", "pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_XXXXXUserPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DXXXXXUserPortal%26Name%3D%20XXXXXUserPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_XXXXXUserPortal%26launchPortal%3Dtrue&target=popup&portalThreadName=STANDARD&portalName=XXXXXUserPortal&pzHarnessID=XXXXXXXXXXXXXX" ); %> <a href="<%=PublicLinkURL%>?<%=RedirectLocation%>" target="_blank"> XXXXX Reports Page Link </a> /****** CODE BLOCK ****** /
Thank you very much for helping.