bleed/bftrcraftapsis

Integrations between Craft and Apsis

Maintainers

Package info

github.com/BleedDesignstudio/bftrcraftapsis

Issues

Documentation

Type:craft-plugin

pkg:composer/bleed/bftrcraftapsis

Statistics

Installs: 7

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2018-07-04 09:34 UTC

This package is not auto-updated.

Last update: 2026-03-19 20:01:31 UTC


README

A work in progress plugin that implements the Apsis API into Craft 3.

Installation

$ composer require bleed/bftrcraftapsis

Make sure to enter a valid Apsis API key under the plugin settings in the Craft admin panel.

Examples

Add subscriber to mailing list

{% set subscriber = {
	'Name': 'Gilles Deleuze',
	'Email': 'gilles@deleuze.fr'
} %}

{# first param is the mailing list ID #}
{# second param is subscriber object #}
{# third param decides whether or not to update info if the subscriber already exists #}
{{ apsisAddSubscriber('2710122', subscriber, false) }}