1. Components
  2. Mailing List Form

Components

Mailing List Form

MailingListForm a drop in form used to collect email addresses

Wrap the mailing list form anyway you like to style it into place.

Params

mailingListEmail: STRING the email address for the mailing list

Requirements

  • Mailgun Mailing List Email

Example

html
        <section class="bg-white dark:bg-gray-900">
  <div class="py-8 px-4 mx-auto max-w-screen-xl lg:py-16 lg:px-6">
    <div class="mx-auto max-w-screen-md sm:text-center">
      <h2
        class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl dark:text-white"
      >
        Sign up for our newsletter
      </h2>
      <p class="mx-auto mb-8 max-w-2xl text-gray-500 md:mb-12 sm:text-xl dark:text-gray-400">
        Stay up to date with the roadmap progress, announcements and exclusive discounts feel free
        to sign up with your email.
      </p>

      <MailingListForm mailingListEmail='mailinglistemail@mailgun.com'/>
    </div>
  </div>
</section>