Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlphaBlossom/b07a3dd89d5e82a13841f9934a52117e to your computer and use it in GitHub Desktop.
Save AlphaBlossom/b07a3dd89d5e82a13841f9934a52117e to your computer and use it in GitHub Desktop.
Moosend Form for ClickFunnels HTML Integration
<!--
1) Replace your list ID in the "form" link:
<form action="https://app.moosend.com/subscribe/REPLACE-WITH-YOUR-LIST-ID" method="post" id="ms-sub-form" onsubmit="">
2) Add your input fields - If adding more custom fields, add the line below and update information
<input type="text" name="ms-[FIELD-NAME]" id="[FIELD-ID]">
3) Once info has been updated, copy below (from <form> to </form> and everything in between) and past into ClickFunnels "Paste Web Form Code (HTML) field"
4) Don't forget to change the page redirect URL (Your next page in your funnel) in the Moosend "List Settings" inside your Mailing List
-->
<form action="https://app.moosend.com/subscribe/8e570d08-84c1-457f-a386-a4ff83b9568c" method="post" id="ms-sub-form" onsubmit="">
<div>
<!-- Don't change. -->
<input type="email" name="ms-email" id="email" required="">
<!-- Don't change. If not using name, delete -->
<input type="text" name="ms-name" id="name">
<!-- Insert Custom Fields here -->
<!-- name="ms-[YOUR-FIELD-NAME]" id="[YOUR-FIELD-ID]" -->
<input type="text" name="ms-clickfunnelsaccount" id="20471a4a-2a36-4882-b1ea-fef97a6cd26e">
<!-- name="ms-[YOUR-FIELD-NAME]" id="[YOUR-FIELD-ID]" -->
<input type="text" name="ms-clickfunnelsbiggestchallenge" id="9fe2395a-50c1-47c9-bc26-2d5089491fff">
<!-- Don't change. -->
<input type="submit" value="Subscribe">
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment