Prefill Links with URL Encoding 


In this Article
Related Articles

Introduction

If you have ever created a prefilling link that involved a special character (e.g. #,@,%), you may have noticed that your prefilling link broke, or was cut off at the point of that special character.

When this happens, you may need to use something called URL encoding, which will translate that special character into a form that won't break your prefilling link.

You can use this document as a guide to create a prefilling link that utilizes URL encoding.  You can view a complete list of URL encoded values for characters here.


Prefill Links with URL Encoding

In general, if everything is working as expected with your prefilling links, you most likely do not need to worry about URL encoding.

However, if you are only seeing parts of your field prefilled, or if fields are being cut off after certain values, then you probably need to use URL encoding.

For example, if you are attempting to prefill in an address field that involves a #, and it is not being prefilled as expected, then you should use URL encoding.

If you are sending out a prefilling link through a Salesforce HTML email template, then you can easily address this from within your template.  If you have a field that has spaces or special characters, you could change your HTML template to look like this:

&tfa_MailingStreet={!Contact.MailingStreet} 
becomes
&tfa_MailingStreet={!URLENCODE(Contact.MailingStreet)}

Additionally, if you are ever running into issues using a redirect link to reference a query parameter in the prefill connector, you can follow this example to resolve those issues.

Another option when sending special characters through a redirect link would be to utilize the @URLENCODE() formula. When used, this formula will apply URL encoding to the text or alias inside the parentheses. For example, you could use this formula on text: 

http://your_form.tfaforms.net/133?tfa_xxx=@URLENCODE("Mike Smith")

Or you can use it with a field alias:

http://your_form.tfaforms.net/133?tfa_xxx=@URLENCODE(%%tfa_yyy%%)

Finally, for more advanced users, if you have a need to convert special characters into URL encoded values within your form, you can use this custom JavaScript.  Please note that we are unable to support custom code, and this is something you would need to setup on your end.

Terms of Service · Privacy Policy