-
Re: embed a form within an email
Sanford Whiteman Mar 28, 2017 8:26 AM (in response to Randall Tam)Please move the thread to Products and we'll pick it up there.
-
Re: embed a form within an email
Randall Tam Mar 28, 2017 8:29 AM (in response to Sanford Whiteman)Thanks Sanford, it has been moved to products
-
-
Re: embed a form within an email
Sanford Whiteman Mar 28, 2017 8:54 AM (in response to Randall Tam)The answer is "Yes, but don't do this with a click." Mail scanners will click your "instant" registrations and you don't want that.
Automatically posting the form should (though no guarantees) avoid most false positives.
MktoForms2.whenReady(function(form){ form.submit(); });
-
Re: embed a form within an email
Randall Tam Mar 28, 2017 8:51 AM (in response to Sanford Whiteman)Sorry Sanford, not understanding where to add this piece of code.
-
Re: embed a form within an email
Sanford Whiteman Mar 28, 2017 8:52 AM (in response to Randall Tam)On an LP with a form.
-
Re: embed a form within an email
Randall Tam Mar 28, 2017 9:02 AM (in response to Sanford Whiteman)Sorry to bother you. What I do is create a form, under From settings>>Form Theme>>Edit Simple Custom CSS and add the code provided.
Then use this form on a landing page and use the Landing page URL as the email CTA?
-
Re: embed a form within an email
Hobie Thompson Mar 28, 2017 11:16 AM (in response to Randall Tam)The CSS wouldn't be where this would go. You'd want to go into the LP itself and edit the HTML. If you have a Marketo form on your LP, you'd put it above the div where it starts, like this:
<script>
MktoForms2.whenReady(function(form){
form.submit();
});
</script>
<div class="mktoForm" id="form1" mktoName="form1">
-
-
-
-