Skip to main content

Popup Widget

The Popup Widget lets you create a Brevo-style signup popup inside Sequenzy and install it on any website with a hosted script.

Quick Start

  1. Go to Settings → Widgets in your Sequenzy dashboard.
  2. Choose Popup.
  3. Pick a template, trigger, fields, lists, tags, and success message.
  4. Copy the generated HTML snippet.
  5. Paste it into your site template, Webflow Embed element, or Webflow custom code.

Install Code

The generated snippet loads the runtime from the Sequenzy API domain:
<script>
  window.SequenzyPopupConfig = {
    companyId: "company_123",
    apiBaseUrl: "https://api.sequenzy.com",
    listMode: "all",
    listIds: [],
    tagIds: [],
    templateId: "newsletter",
    layout: "fullscreen",
    trigger: { type: "delay", delaySeconds: 5 },
    content: {
      title: "Join the newsletter",
      description: "Get practical updates delivered to your inbox.",
      buttonText: "Subscribe",
      successMessage: "Thanks for subscribing.",
      badgeText: "Newsletter",
    },
    visual: { style: "accent", placement: "top" },
    fields: { email: { placeholder: "you@example.com" } },
    theme: {
      accentColor: "#f97316",
      backgroundColor: "#ffffff",
      textColor: "#111827",
    },
  };
</script>
<script async src="https://api.sequenzy.com/api/v1/widgets/popup.js"></script>

Triggers

You can open the popup after a delay, after the visitor scrolls, on exit intent, or manually from your own button:
<button type="button" onclick="window.SequenzyPopup.open()">Open signup</button>

Submissions

Popup submissions use the same public Forms API as embedded signup forms:
POST https://api.sequenzy.com/api/v1/forms/{companyId}
This means list targeting, tag assignment, first name, last name, spam honeypot protection, and existing subscriber updates behave the same way as standard signup forms.

Webflow

In Webflow, paste the generated snippet into a page-level Custom Code area or an Embed element. Publish the site before testing the popup.