Can we send form submissions for a known group to TY Page 1 vs a default TY Page? | Community
Skip to main content
Nav_Singh1
New Participant
January 31, 2019
Solved

Can we send form submissions for a known group to TY Page 1 vs a default TY Page?

  • January 31, 2019
  • 2 replies
  • 5793 views

Is there a way to send a segment of known users to 1 variation of a TY Page as they have submit a form where we know their email is in a "approved list"?

Is there a javascript workaround that has been tested by the community?

Would appreciate any guidance or advice. I was looking through https://blog.teknkl.com/ but didn't see anything specific to this use case.

Similar use case could be real-time form validation against a known set of parameters (in this case, known emails).


Thanks,
Nav

Best answer by SanfordWhiteman

This is a variation of the Lead Lookup Form pattern and yes, it is possible. I just gave a presentation at our MUG that dipped into it. Check this post for the slides, which will go up today or tomw: NYMUG 1/23: Advanced Hacks for Marketo: the Resource Lead pattern, Lead Lookup forms, and more

2 replies

Josh_Hill13
New Participant
January 31, 2019

There are some threads on this.

You can use the Form Settings Step 3 to do such a redirect. You can do that with JS or JQ as well.

Another option that may work is Dynamic Content on the TY page based on the Segmentation.

SanfordWhiteman
New Participant
January 31, 2019
Another option that may work is Dynamic Content on the TY page based on the Segmentation.

(Association + segment won't be computed in time for the TY page to work.)

Nav_Singh1
New Participant
January 31, 2019

Yeah, tried that last year and ended up going for some wonky php workaround. I recall you mentioning you had a blog post coming out around then on it but it wasn't ready in time for us last year. Hoping to revise our workflow somewhat for this year's campaign.

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
January 31, 2019

This is a variation of the Lead Lookup Form pattern and yes, it is possible. I just gave a presentation at our MUG that dipped into it. Check this post for the slides, which will go up today or tomw: NYMUG 1/23: Advanced Hacks for Marketo: the Resource Lead pattern, Lead Lookup forms, and more

Nav_Singh1
New Participant
February 4, 2019

Found the slides here - slides_marketo_mug_2019-01_live.zip (Post)

This is most excellent @Sanford Whiteman!

Looking through this now. It would seem like I could validate/ check if they are in the list using the Lead LookUp Form Method? (From here - /slides_marketo_mug_2019-01_live/index.html#/22 and #23)

Is there a recording available or a demo page as well? Wanted to clarify if the Lead LookUp Authenticator & iFrame was tied to the KV HTML? Wasn't sure what the iFrame was referring to, or if you are adding one to the page?

I'm excited to give this a try. We had a php workaround we were using last year but I found that to be pretty clunky.

Nav_Singh1
New Participant
February 4, 2019

Think I found my own answer. Looks like you're creating it .onSuccess?
form.onSuccess(function(vals, originalThankYouURL) {

thankYouIframe = document.createElement("iframe"),


Looks like I would want to use a custom field to indicate they're in the list and then use that to validate which TY page they are served.