Hi everyone,
for marketing consents we use a doulbe opt in process. We have some content we want to show a visitor only in case he has already a valid double optin.
Importend: It's about a non-Marketo Landingpage
My current concept is something like:
What's the issue:
Unfortunately the associateLead feature isn't supported anymore.
Do you have an idea how to call the iFrame aka. Data Transfere Page kind of "mktoForm.AFTERSuccess"?
Or do you have an idea how to associate the lead before sending the form?
(Currently the only idea I'd have would be to send another form in between but I hope for an easier less complex solution.)
Best Regards
Wolfram
I think another way to do this would be to:
1. Add a hidden field for "double-opt-in" with the true/false value populated from Marketo. You will need to make sure pre-fill is enabled on the field.
2. Add a choice step in the Settings of the form to determine where someone is sent upon form completion. If double opt-in is true, go to thank you page. If it is false, send them to the other landing page with a second form to request double opt-in.
And then simply use the Marketo form embedded on your external website.
Good luck with your project!
1. Add a hidden field for "double-opt-in" with the true/false value populated from Marketo. You will need to make sure pre-fill is enabled on the field.
But that wouldnโt meet the requirement, as you canโt Pre-fill if thereโs no existing associated session.
The idea here is that the session is anonymous until the person fills out the form.
Ah, that makes sense, thank you @SanfordWhiteman.
Unfortunately the associateLead feature isn't supported anymore.
associateLead was asychronous anyway, it wouldnโt have helped.
The way to accomplish this is to poll the DTP on a timer within the onSuccess, until the Email Address that was just submitted appears in the response. Then you know you have that personโs values and can perform the next set of actions. return false; from the main onSuccess function and the immediate redirect is disabled. Then you have control over when/if/how the redirect occurs.
Good point.
@EllenSchwier and @SanfordWhiteman
Thank you. I figured it out. It was not the flow but the timing.
OnSuccess is already defined as "It happens after the submit but before the redirect". My issue was that Marketo just needs some time to associate the user after the form submit.
So if you wait e. g. 1-2 seconds so association happend and you can access the data.
Currently I use something like setTimeout(() => {form.submit();;},1000); before I starte the process.
For the moment it's working. Admitted it's not really elegant but functional. As I have to wait for processes in several moment (e. g. in case the Munchkin cookie was not already set). So the whole process can take some seconds.
If any of you has an idea how to solve this more elegent and performant I'd really thankful. ๐
Best regards
Wolfram
So if you wait e. g. 1-2 seconds so association happend and you can access the data.
But thatโs not actually accurate. Youโre just guessing about 1-2 seconds. Thatโs why the right way is to poll every N milliseconds (I usually use 200ms) for a max number seconds (I use 10s).
While thereโs no built-in event to trigger on, polling repeatedly is the accurate way to detect association.
Hi Sanford,
you are absolutely right. It's not accurate. As you say. It's just a guess. And a conclusion by try and error.
Till now I unfortunately I hadn't the right idea how to check it the best way. In case it's a new user It should be easy as I can compare the give and the delivered email address. But in case of a know user I don't see any option to compare if the deliverd state is the actual state or the state before sending the form.
Or do you have an idea how to figure out if the form submission was already processed on marketo side?