Skip to main content

Blueprint

The Email Manager plugin provides flexibility in how you integrate email form capabilities into your Kirby CMS setup. There are two primary methods to include Email Manager functionality in your blueprints.

Tab Integration

The Email Manager comes with a prebuilt Tab Blueprint. This allows you to include a fully configured tab in your page blueprints with minimal setup.

title: Default Page

tabs:
  content: #your content fields
  email-manager: email-manager

This will automatically load the Email Manager tab into your page, providing a dedicated area for configuring email forms.

Block Integration

The Email Manager can also be added as a block within a block field.

fields:
  blocks:
    label: Content
    type: blocks
    fieldsets:
      - email-manager

The Email Manager block comes with a default snippet, registered under blocks/email-manager. This snippet is used to render the block’s output. However, you can override this snippet to customize how the block is displayed.