MailChimp Integration

If you would like to add an email signup form to your ManaKeep site we recommend MailChimp.  They are quick to get started with and the integration with your ManaKeep site is fairly easy.

To get started you will want to create a MailChimp account and create your first List (which people can then subscribe to).  Then to embed the signup form on your ManaKeep site:

  • Click on Lists in the top menu
  • Select the list you want to embed
  • Click on Signup forms
  • Select Embedded forms


From here you can customize the embed form, and once you are happy with it copy and paste the code provided into an HTML block in the Editor of ManaKeep.

Make MailChimp match your design

By default MailChimp uses its own designs for its form, but if you would like to instead use the same fonts, colors, buttons, etc that your ManaKeep site uses we have provided an easy starting point for you =)

Add an HTML block to your site, and paste in the following HTML:

<div class="block_email_list">
  <div class="text-entry">
    <h3>Subscribe to our mailing list</h3>
  </div>
  <form action="https://paste-in-mailchimp-url-here" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" novalidate>
    <div class="grid">
      <div class="cell">
        <input type="email" value="" name="EMAIL" class="required email form-input" placeholder="Enter your email" id="mce-EMAIL">
      </div>
      <div class="cell">
        <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn primary">
      </div>
    </div>
  </form>
</div>

Now simply replace the part where it says action="https://paste-in-mailchimp-url-here" with the action shown in the MailChimp Copy/Paste snippets.

And now you have an email signup form which matches your sites design on ManaKeep and is fully responsive, so it will look great on phones and tablets too =)