Hi,
I use a formula field to build a URL to prepopulate a Fillout form, and I send the link via an automation -> Gmail send. The formula looks like this:
"https://user.fillout.com/t/random?email="{email&"&name="&name&"&id="&RECORD_ID()
Hi,
I use a formula field to build a URL to prepopulate a Fillout form, and I send the link via an automation -> Gmail send. The formula looks like this:
"https://user.fillout.com/t/random?email="{email&"&name="&name&"&id="&RECORD_ID()
Best answer by kuovonne
There are multiple ways of combining text to make a Markdown link. Here is one way.
CONCATENATE(
"[friendly name here]",
"(" & {url formula field} & ")"
)
FYI, the example formula you gave doesn't look quite right. That might be a formatting problem with this forum, or it might be something else.
Instead of
"https://user.fillout.com/t/random?email="{email&"&name="&name&"&id="&RECORD_ID()
try
CONCATENATE(
"https://user.fillout.com/t/random",
"?email=" & ENCODE_URL_COMPONENT({email}),
"&name=" & ENCODE_URL_COMPONENT({name}),
"&id=" & ENCODE_URL_COMPONENT(RECORD_ID())
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.