I have a workflow that in the email body I want to include a Link another App.
I want to autopopulate the destination app with the employee name…both apps have a field named “employee name”
it is not recognizing it as a “link” in the email everything from Hyperlink on is unclickable text…
does Hyperlink need something to let the system know it is a system function?
In the same email I have Supervisor Name: <<[Supervisor Name]>>
and it is working…
When I put the above code in my template…it doesn’t sent the email at all. If I take it out it sends, but then I don’t have the link.
In the past I have seen that indicates there is an error with the code.
It expects a second text parameter to insert as the text. So I image the function written as is was failing in the Workflow preventing the email from being sent.
I can not find the actual syntax for putting the links in the email template or the body of the email.
I am using the template.
I really would like to go to a form in another app…can not get the code to work.
I tried this…just to see if I could get something to work, and it doesn’t work either. It is a syntax error because if I have it in, the email does not send at all, if I take it out it works.
Do you see anything wrong with this?
<<LINKTOAPP(GSuiteOffboarding-1247271)>>
Because of the hyphen it thinks its an arithmetic operation.
By the way, going back and looking at the other posts, it looks like you had been using the UUID of the app and not the app-id. So I would try again but use the app-id - the value (or similar value if another app) you included in this latest post.
I must profusely apologize. I have led you down a totally incorrect path. In your initial post you actually had this very close.
I was under the impression that the LINKTO…() functions returned a fully qualified URL. They do not. And because they are formatted to be used within the AppSheet environment, the results of these functions cannot just simply be concatenated onto the proper URL string.
For example, When I used LINKTOVIEW() the text returned in the email was like this
To Get a Clickable Link
So, trashing the idea of the LINKTO…() function I went back to the core URL. i was able to get a clickable link in my email by using this expression:
Notice the placement of the “appName” variable and the “view” variable.
For whatever reason, the clickable text did not appear and I wonder if HYPERLINK() is actually of any use at all. What I received in the email body was like that below but the link did work.
I am not aware of any other functions that help with the creation of these links. I do know that we can manually insert the URL’s and concatenate in column variables to make the URL dynamic, e.g. to go to a Detail View for a specific row.