URL variable removed with clicking link

Hi All,

I’ve run into a strange problem. I have a field that concatenates a form URL and adds in a hidden field. This URL is sent as part of an email message using the Gmail pack:

https://coda.io/form/Untitled-Form_dfWrQXd7rYU?Email=bradley@myurl.com

However, when the URL is clicked in the email, the email address portion of the string is stripped away and I can’t figure out why?

What would cause this?

Hello @Bradley_Skaggs

Try to encode the email to URL first and check if it works

Something like this:

Concatenate(
https://coda.io/form/Untitled-Form_dfWrQXd7rYU”,
“?Email=”, EncodeForUrl(“bradley@myurl.com”)
)

Best regards
Arnhold

Thanks. It’s definitely an encoding issue. I decided to change the variable to the row number and it worked. Thanks for taking the time to reply!

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.