SOLVED

Test URL Parameters using "+" in Email Address?

Go to solution
Anonymous
Not applicable

Test URL Parameters using "+" in Email Address?

I'm wondering if anyone else has had success or struggles with this as I open a support ticket with Marketo.

To create new test leads using a valid email address, I add a "+" and few characters before the domain (e.g. jessica.dobson+test123@pedowitzgroup.com). I will receive an emails sent to that address at my regular address, but Marketo treats it as a brand new lead, allowing me to fully test lead entries.

I've run into some issues, however, when using that trick when testing forms using URL parameters for hidden fields. Instead of including "+," it adds a space, making the email address invalid which halts any email sends in the flow I'm testing. I tried using the HTML code for "+" (+), but it didn't render the plus sign in the email address either.

Anyone have experience or advice?

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Test URL Parameters using "+" in Email Address?

You don't want HTML-encoding, you want URL-encoding. "+" = "%2B" in a URL.

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Test URL Parameters using "+" in Email Address?

You don't want HTML-encoding, you want URL-encoding. "+" = "%2B" in a URL.

Anonymous
Not applicable

Re: Test URL Parameters using "+" in Email Address?

DUH Thank you so much!