0 Workflow File Links 1 Jeremy Turgeon posted 9 Years Ago We have a workflow that takes a Word document and assigns the next step in the workflow to a supervisor. They receive an email from the User Entry Form action with links to the workflow name and file but clicking the file's link only gives a partial URL. Rather than providing http://mywebsite.com/getfile.ashx/?guid=000000 it only returns http://getfile.ashx/?guid=000000.
Jeremy Turgeon 9 years ago I believe it is using the lava tag {{attribute.Value }}. I've tried adding the full domain address but it didn't seem to help as it added the address outside the a href.
Michael Garrison 9 years ago Try {{ attribute.Value | ReplaceFirst:'"/GetFile.ashx?', '"https://rock.yourdomain.com/GetFile.ashx?' }}It's a bit brute-force, but it might do the trick
Michael Garrison 9 years ago Ultimately I suspect the answer is that something needs to be set in your workflow - after all I'm betting that a DISC profile test or photo request correctly includes the full address - but I haven't gotten my head into workflows enough to be able to speak intelligently on what that might be. Hence my kludgy suggestion =)
Jeremy Turgeon 9 years ago It looks like {{ attribute.Value | ReplaceFirst:'/GetFile.ashx', 'https://rock.belairpres.org/getfile.ashx' }} is the winner! Thanks for the help. I really appreciate it. :)