Hi community
In my app I created a send email action, which had a link in the body that looks like this.
EncodeURL(concatenate("Please see below link for the details regarding the invoice that needs to be generated the Marketing department.
Please help me out with this marketing request? " , “https://www.appsheet.com/start/3c0f6f8a-1b7d-4f44-af69-0e9203f68a27#appName=WIP20092021-2892034&group=%5B%7B%22Column%22%3A%22WIP_Store%22%2C%22Order%22%3A%22Ascending%22%7D%5D&page=detail&row=”,
[WIP_ID],
“&sort=%5B%7B%22Column%22%3A%22WIP_Date_in%22%2C%22Order%22%3A%22Descending%22%7D%5D&table=WIP&view=WIP_Detail”
))
I tried to do the same thing with an automation email but it didn’t give me the same result.
So I tried this…
<<EncodeURL(concatenate("Please see below link for the details regarding the invoice that needs to be generated the Marketing department.
Please help me out with this marketing request? " , “https://www.appsheet.com/start/3c0f6f8a-1b7d-4f44-af69-0e9203f68a27#appName=WIP20092021-2892034&group=%5B%7B%22Column%22%3A%22WIP_Store%22%2C%22Order%22%3A%22Ascending%22%7D%5D&page=detail&row=”,
[WIP_ID],
“&sort=%5B%7B%22Column%22%3A%22WIP_Date_in%22%2C%22Order%22%3A%22Descending%22%7D%5D&table=WIP&view=WIP_Detail”
))>>
Neither is working. Is there something else I can try?