# Newsletter Split

> Render newsletter or waitlist copy beside a compact form.

Canonical HTML: https://press.varavel.com/docs/shortcodes/newsletter-split/
Markdown: https://press.varavel.com/docs/shortcodes/newsletter-split/index.md

`newsletter_split` renders a clean email capture section with optional inline success behavior.

## When to Use

Use it for newsletters, early access lists, product update subscriptions, or campaign-specific lead capture.

## Usage

```markdown
{{/* newsletter_split(title="Stay updated", button_text="Join") */}}
```

## Live Example

{{ newsletter_split(
container="md",
eyebrow="Updates",
title="Stay close to the release",
description="Collect subscribers without adding backend-specific assumptions to the theme.",
button_text="Join the list",
note="No spam. Use a real form action for production submissions."
) }}

## Parameters

| Parameter           | Description                                   |
| ------------------- | --------------------------------------------- |
| `container`         | Inner content width.                          |
| `eyebrow`           | Small uppercase label above the heading.      |
| `title`             | Section heading.                              |
| `description`       | Supporting copy.                              |
| `form_action`       | Optional form action URL.                     |
| `method`            | Form method. Defaults to `post`.              |
| `email_placeholder` | Input placeholder.                            |
| `button_text`       | Submit button label.                          |
| `note`              | Small note below the form.                    |
| `success_message`   | Inline success message when no action exists. |
| `bg`                | Full-width section background token.          |
| `class`             | Additional CSS classes on the outer section.  |
