I 'm sending notification mails wherein client variable in a href URL breaks as it contains '&'.For e.g. clientname is tech & Design. When i call this variable it breaks at tech. How to resolve this?Is encoding a resolution and how do i do it?
"<a href="mailto:[email protected]?subject=ACTION REQUIRED: <$ClientName$> is in your workflow queue | PID: <$xProject_ID$> | DID:<$dID$> | Approve">"
regexReplaceAll function helped me resolve the issue. it replaces the matched value from variable. In my case &
Here it is < $regexReplaceAll(ClientName,"&","")$>
< a href="mailto:[email protected]?subject=ACTION REQUIRED: < $regexReplaceAll(ClientName,"&","")$> is in your workflow queue | PID: < $xProject_ID$> | DID:< $dID$> | Approve">"