kuzmany/mautic-custom-tags-bundle

There is no license information available for the latest version (1.3.1) of this package.

Custom tags for Mautic

1.3.1 2021-11-17 20:50 UTC

This package is auto-updated.

Last update: 2024-04-20 16:39:30 UTC


README

Custom tags for Mautic

Installation

Composer from Mautic root directory

composer require kuzmany/mautic-custom-tags-bundle

Then:

  1. Go to Mautic > Plugins and click to the button Install/Upgrade plugins image
  2. New plugin should be added image
  3. Then create email or page and you can use these tags:

getremoteurl

{getremoteurl=http://yourremote.url}

The tag get content from your remote url.

You can display remote content from external site in your email or page.

You are able to use contact field in url. Contact field use in format [contactfield=alias]. Your token will looks like:

{getremoteurl=http://yourremote.url?firstname=[contactfield=firstname]}

You are able to use |decode modifier to urldecode URL. Your token will looks like

{getremoteurl=http://yourremote.url?test=1&test=1|decode}

base64decode

{base64decode=customtextareafield}

The tag decode base64 encoded content from contacts custom textarea field.

You can pass base64 encode data to contact from API and then display in email or page.

image