• Features
  • Services
    • Email Authentication
    • Agency Partnerships
    • Email Training
    • Inbox Brand Visibility
    • Deliverability
  • Resources
    • Knowledge Base
    • API documentation
    • Blog
    • Status
    • BIMI inspector
  • About us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    • Privacy recommendations
  • Features
  • Services
    • Email Authentication
    • Agency Partnerships
    • Email Training
    • Inbox Brand Visibility
    • Deliverability
  • Resources
    • Knowledge Base
    • API documentation
    • Blog
    • Status
    • BIMI inspector
  • About us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    • Privacy recommendations
  • Login
    EN CS
Mailkit logo
  • Features
  • Services
    • Email Authentication
    • Agency Partnerships
    • Email Training
    • Inbox Brand Visibility
    • Deliverability
  • Resources
    • Knowledge Base
    • API documentation
    • Blog
    • Status
    • BIMI inspector
  • About us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    • Privacy recommendations
  • Features
  • Services
    • Email Authentication
    • Agency Partnerships
    • Email Training
    • Inbox Brand Visibility
    • Deliverability
  • Resources
    • Knowledge Base
    • API documentation
    • Blog
    • Status
    • BIMI inspector
  • About us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    • Privacy recommendations
  • Login
    EN CS
EN CS
Login
  • Mailkit
  • Resources
  • Knowledge Base
  • Using templates
  • Plug-ins
  • Campaigns (16)
    Campaign management Email campaigns Remarketing campaigns Transactional Campaigns Confirmation campaigns SMS Campaigns Content and personalisation Campaign testing and previews Adding links Advanced tracking Content merge tags Campaign AB testing Delivery capping Campaign delivery settings File Manager Manage Polls
  • Journeys (3)
    Journey management Journeys editor Nodes
  • Mailing lists (6)
    Manage recipient list Manual recipient import Subscribe form generator Engagement score Recipient filtering Unsubscribes
  • Reports (6)
    Summary Reports Campaign Reports Campaign delivery report Event Reports Recipients report Deliverability Report
  • Using templates (10)
    Email Templates Conditions & operators Including and processing Working with data Using date & time functions User interface templates Micro-site templates Content Styles Plug-ins Filters and functions
  • Account management (8)
    My account Two-factor authentication (2FA) Data sources Integration Tags and Topics SPF records DMARC record Mailkit Cookies
  • Visual builder (6)
    How Visual builder works Content Blocks Modules Smart Elements Conditional blocks Ready-made templates
  • Campaigns
  • Journeys
  • Mailing lists
  • Reports
  • Using templates
  • Account management
  • Visual builder
Campaign management Email campaigns Remarketing campaigns Transactional Campaigns Confirmation campaigns SMS Campaigns Content and personalisation Campaign testing and previews Adding links Advanced tracking Content merge tags Campaign AB testing Delivery capping Campaign delivery settings File Manager Manage Polls
Journey management Journeys editor Nodes
Manage recipient list Manual recipient import Subscribe form generator Engagement score Recipient filtering Unsubscribes
Summary Reports Campaign Reports Campaign delivery report Event Reports Recipients report Deliverability Report
Email Templates Conditions & operators Including and processing Working with data Using date & time functions User interface templates Micro-site templates Content Styles Plug-ins Filters and functions
My account Two-factor authentication (2FA) Data sources Integration Tags and Topics SPF records DMARC record Mailkit Cookies
How Visual builder works Content Blocks Modules Smart Elements Conditional blocks Ready-made templates
Search

Plug-ins

Plug-ins further extend the already extensive features of the template language. It contains many plug-ins which enable advanced possibilities from “dumping” the data, through mathematical functions, and working with date & time, to formatting. There are also some plug-ins which enable specific access operations and data manipulation, with both internal data and data from external sources.

  • use_dbi
  • Events
  • Recombee
  • Fetch

use_dbi

This plug-in enables SQL database connection in templates, without the necessity of attaching the datasource to the template. This can, for example, simplify the template migration or distribution, without having to do manual changes in the template settings. It can also be used in campaigns which don’t use Smart Templates or Content Styles, but Visual Builder instead. Datasource connection can be done in two ways:

  • by using the datasource name: [% 'datasource_name' | use_dbi -%]
  • by using the datasource ID: [% 'datasource_ID' | use_dbi -%]

Following steps are the same as if you attached the SQL datasource in the template settings, and used it via DBI plug-in. So if we would, for example, want to use a datasource Stock with ID 1234, it would look like so:

[% '1234' | use_dbi -%]
[% USE dbh_sql = DBI (dbh = shared.DBI_DS_SQL_STOCK) -%]
[% query_items = dbh_sql.prepare('SELECT * FROM ds_1234_table_name ORDER BY RAND() LIMIT 5') %]
[% items = query_items.execute () -%]
[% FOREACH items -%]
    <pre>[% USE Dumper; Dumper.dump(items) -%]</pre>
[% END -%]

This code snippet connects the datasource ID 1234 SQL database, and following commands display 5 random table records. This is done via the Dumper plug-in, which displays data structure.

Events

Another similar situation to the aforementioned database connection, would be Events data. These data can be automatically accessed in remarketing campaign data structures, which react to Events, but often times the ability to access those data from regular campaigns can be handy as well.

In that case, we can use the Events plug-in. The data can be accessed via this plug-in like so:

[% USE Events(tag => 'cart', status='open', limit=> 5) -%]

The plug-in has 3 parameters:

  • tag – the tag (name) of the event we want to use
  • status – to choose open or finished events
  • limit – to limit the recipient events which will be returned

The only required parameter is the tag, without which only the untagged events will be returned. If the status parameter isn’t specified, it’s default value is “open”, and if the limit isn’t specified, the output will be limited to the maximum of the latest 20 events of the specific recipient.

Then we can display the contents via the FOREACH loop:

[% FOREACH Events.data -%]
    Date: [% modify_date -%]
    [% FOREACH EventItems -%]
        Name: [% name -%]<br>
    [% END -%]
[% END -%]

In this example we display the date of the latest event change, and then name of all items in the event.

Since events are tied to a specific recipient, the plug-in will always return only the data of the current recipient. Therefore, if you look at the preview in the template editing you won’t see any data, because the preview in the template editing doesn’t have a recipient. So the testing has to be done in the campaign preview where you can select a recipient which you know that has the data.

ATTENTION: Even if you don’t want to use any data from the event itself, just the data from the event items, you still have to use the event, otherwise you can’t access the item data. In that case, the code would look like this:

[% FOREACH Events.data -%]
    [% FOREACH EventItems -%]
        Name: [% name -%]<br>
    [% END -%]
[% END -%]

Recombee

As the name suggests, this plug-in is for getting recommendations from the Recombee service. Recommendations for individual recipients are returned in real time, both in campaign preview and sending. Recommendations are returned as an array with recommended products IDs, then you can get the products by the ID from the SQL data source, and insert them into the message. Alternatively, you can use the returnProperties parameter, which will return complete information about the product as they are stored in Recombee from your product feed, then insert those into the message.

It’s important to note that when using recommendations, there can occur a case when the recommendation system won’t return any data – either because it doesn’t know the recipient yet, or doesn’t have enough data about them. This also matters, because there can be a variable amount of recommendations – when you set the amount, you are setting the upper limit, not a fixed amount. Therefore it may happen that there won’t be enough data for some recipients, so they will see fewer products - this should be considered when designing the template.

Last but not least, you should also consider that using this filter affects the sending speed, because there has to be a data request to Recombee for each recipient. That means it’s best to use the recommendations in campaigns with small amounts of recipients and clear targeting, like for example an abandoned cart, or a campaign for a small segment. In campaigns for tens or hundreds of thousands recipients, we recommend to consider very carefully both the benefits and slow sending speed.

The plug-in is used like this:

[% USE Recombee(
   database => 'name', # required
   userId => <string>, # optional custom userId (eg. token) otherwise email is being used
   count => <int>, # desired recommendation (defaults to 1)
   scenario  =>  recombee scenario, # see recombee UI for parameter descriptions
   cascadeCreate => <boolean>,
   returnProperties => <string list>,
   filter => <string>,
   booster => <string>,
   logic => <string/object>,
   minRelevance => <string>,
   rotationRate => <decimal>,
   rotationTime => <decimal>,
) -%]


    [% FOREACH Recombee.data.recomms -%]
        <div><a href="[% values.URL -%]">[% values.PRODUCT -%]</a></div>
    [% END -%]

The only required parameter is database for the database name in Recombee. The rest is the same as in the Recommend Items to User function, as described in the Recombee documentation. Also the data structure returned by plug-in corresponds with the data structure from Recombee API.

Fetch

The option to insert the content which is current for a recipient in the very moment the campaign is sent, is a frequent request in campaigns. Most cases are discount codes, exchange rates, weather forecasts and so on.

This is where the Fetch plug-in comes in. It enables inserting data from a URL into the template. Plug-in automatically detects the content type, and if it’s a JSON (application/json) or an XML (application/xml), it will automatically decode the content into data structure, which can be accessed like structured data. In case the content isn’t either JSON or XML, it will be available as a string.

Fetch can be used under the following conditions:

  • response URL can’t be longer than 4 kB
  • automatic hard 1 second timeout
  • URL has to be secured by https protocol and valid server certificate
  • at most one URL redirect

These conditions are the result of data transfer security and performance requirements. Since Mailkit generates messages at an astounding speed, it’s necessary that the server which houses the data is able to respond to hundreds or thousands requests per second, because when the server doesn’t respond in time, the e-mail is sent without the data from the response.

The plug-in is used like this:

[% USE Fetch(url => 'https://yourdomain.com/source.json', username=> 'name',
password=> 'password'); -%]

The only required parameter is URL, from which the data should be retrieved. In case the server requires name and password authentication, it’s possible to use parameters username and password. Plug-in returns content in the content structure, in this case it’s Fetch.content.

Depending on the data format, this may be textual content for responses that are not in JSON or XML format (or couldn’t be decoded), or content in the form of structured data extracted from JSON or XML formats.

Errors are stored in the error variable, in case of error responses from the server, code and message variables containing the status code of the response and its text are also available.

Contact us

Let us know what your campaign objectives are and we'll create a plan that works for you.

+420 277 001 800
sales@mailkit.com


Processing of information provided using this form is governed by our Privacy Policy.

  • The field Business email is required.
  • The field How many emails do you send out per month? is required.
  • The field Message is required.
  • Incorrect captcha code.
Required
Required
Required
Mailkit logo

A Czech emailing platform with its own infrastructure, that is a leader in international mailing distribution.

 

  • Features
  • Services
  • Resources
  • About us

services

  • Email Authentication
  • Agency Partnerships
  • Email Training
  • Inbox Brand Visibility
  • Deliverability

ReSOURCES

  • Knowledge Base
  • API documentation
  • Blog
  • Status
  • BIMI inspector
Logo Maawg
Logo Experience
Logo CSA
Logo Signal spam
Logo ISO-27001
Logo ISO-9001
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
© 2006-2022 Mailkit - All rights reserved