Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Well, if you include the original download link in the Thank You email then it also "sends" the content (you can't send attachments with Marketo anyway). But I understand you don't want it to say "Thank you for downloading" the brand-new lead.Can't think of another way to do this with F2F. I think ...
Please post your URL. We can't troubleshoot CSS from a screenshot!
Certainly not expected. A half-second to download the form description, maybe. Although it does depend on how far (geographically) the user is from your Marketo instance. What's a sample URL I can test? Have you checked the network waterfall when loading your page to see how it's taking to load ...
Huh? Not at all. You only need one form. I've outlined this recipe a few times recently.See Re: How do I update the submit button and error message to reflect local language (i.e French) And demo code at:http://codepen.io/figureone/pen/mJWgjE?editors=001〈=en-US (translates the LastName's label an...
In the landing page, add an HTML block. In it, put
(Of course, the SPF record for arezzosky.com is irrelevant for mail with an envelope sender @*.mktomail.com anyway...)
Look in the Activity Log for a test lead after following the link. That'll show you how the system identifies the clicked link and the hosting web page.
All JS enhancements to a form go inside the onReady/whenReady listener (that's the 4th argument to MktoForms2.loadForm or 1st arg to MktoForms2.whenReady). The former case is for embedded forms on non-Marketo pages (or on Marketo pages if you prefer embedding there for some reason), while the latter...
When you set up the form, you should have a hidden field that populates a field -- stored on the lead record -- from the appropriate query param, for example 'utm_source'. Hidden fields always have that option built-in.Then create a Smart List of people who've filled out the form you want, right-cl...
Couldn't be easier:form.onSuccess(function(vals,thankYouURL){ switch(document.location.pathname) { // or whatever you want to use to detect current page case '/mightyfine.html': document.location = '/thanks-mightyfine.html'; break; case '/redredwine.html': documen...