• 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
  • Campaigns
  • Remarketing campaigns
  • 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

Remarketing campaigns

Email remarketing campaigns are campaigns based on the information available about a visitors behaviour on a website. Their goal is to provide a simple and automated way of communication with website visitors based on their activities, for example abandoned shopping carts, follow-ups for completed orders, etc.

Email remarketing campaigns are quite different than the regular email campaigns - mostly because they have different rules for delivery. These campaigns are not setup for delivery at a specific time or schedule but rather with a preset delay from time the remarketing event has been last updated.

The trigger for a remarketing campaign is the existence of an event that the campaign is bound to. Event creation and management is described in the documentation for the Event API.

Creating a remarketing campaign

The fact that the campaign is going to be used for remarketing is set during campaign creation where campaign type needs to be set to remarketing.

Remarketing campaign

Remarketing campaign settings

Remarketing campaign settings

pencil  Use the pencil icon to edit the campaign name.

score  The approximate SPAM score of the campaign.

Subject

Fill in the subject of your campaign. Personalization and conditions can be used in the subject.

From

Select your sender address. Campaigns can be sent using verified addresses only. If you don't see any address it means no address has not been verified yet, or the address is on a domain that does not have DNS correctly set up, see Sending address setting.

Delivery targets

Select a mailing list to record the individual addresses to which the remarketing message was sent. We recommend using an empty recipient list, which will only be used to "catch" the data sent in the events.

Send message for

Choose one of two options to evaluate events - Incomplete events or Completed events. This basic rule helps you define the main event trigger when emails are being sent, for example if visitor has not completed a specific type of event (abandoned cart) or completed and you want to send a follow-up thank you note, invoice, etc.

Send after

How long after the last event activity the email will be sent.

Event tags

If you have multiple events setup on your website using different event_tags you can attach the campaign to specific tags you want to trigger the campaign. By default the campaign is not assigned to any tag and therefor will only get triggered by events with no event_tag defined. Only one tag can be associated with one remarketing campaign.

Test mode

You can switch your campaign to test mode and fill in the email address where all emails should be sent. The test mode works by sending all messages that would be sent to recipients when sent, only to the specified test address, but with the content and appearance in which they would have been sent to the recipients – if 100 recipients are assigned to a campaign and the campaign is sent with an active test mode, all 100 messages will be sent to the specified test address.

 

If the date of the last event is newer (for the given event tag and recipient) than the date of the sent email campaign, the content of the preview in the report may not correspond to the content actually sent (current event data is loaded in the preview).

Remarketing campaign content

Once you have all the settings of your campaign set it's time to define the contents of the email itself. Remarketing campaigns behave the same way as any other email campaign in the system and can take full advantage of your templates to customize the layout as well as the content of the email. Also, the content of remarketing campaigns can be based on Content style. In addition to all the standard templating options you can also use the data of the event itself within the content editor or template using variables.

Here is a short example html to show how this works:

<html>
<head>
<title>Abandoned cart</title>
</head>
<body>
<p>Hi [% Event.first_name -%] [% Event.last_name -%],<br /><br />Order no. [% Event.order_no -%], created on <strong>[% Event.create_date -%]</strong></p>
<p>Cart items:</p>
<table border="1">
	<tr>
    	<td>image</td>
		<td>name</td>
        <td>items</td>
        <td>price</td>
	</tr>
    [% FOREACH EventItems -%]
    <tr>
    	<td><a href="[% product_url -%]"><img alt="[% name -%]" border="0" height="50" src="[% image_url -%]" width="100" /></a></td>
        <td><a href="[% product_url -%]">[% name -%]</a>([% description -%])</td>
        <td>[% item_qty -%]</td>
        <td>[% item_total -%][% item_curr -%]</td>
	</tr>
    [% END -%]
</table>
<p>To complete your order click to <a href="[% Event.return_url -%]">return to cart</a></p>
<p><a href="[SIGNOUT]" target="_blank">Or click to unsubscribe</a></p>
</body>
</html>

As you can see in the very simple example above all the event values collected using initEvent function are available using [% Event.PARAMETER -%] variables, where PARAMETER matches the name of initEvent function variable. This way you can insert the value of any event variable or even evaluate the values using IF, ELSIF, ELSE conditions. For example you can use conditions to insert different texts based on variable language parameter value:

[% IF Event.language == 'cs' -%]Czech text[% ELSIF Event.language == 'en' -%]English text[% ELSE -%]For all other languages[% END -%]

The same logic with variables is used to handle the event contents (items) using a loop [% FOREACH EventItems -%] which returns data for each of the variables used in the addItem function call.

Remarketing campaign testing

You can test your campaign in many ways. As with all campaigns in Mailkit you can get a preview of your campaign. Since it's crucial to see the actual content of a remarketing campaign the previews will show data from a random matching event to give you a more accurate preview of all the data. The same applies for test messages - the messages will contain data from an existing event. That is why we suggest our customers to start with adding event management scripts to their website first.

Obviously the best method of final testing is to switch your campaign to a test mode and see the specific content and times of messages sent based on events created on your website and compare them to your internal records.

 

If the date of the last event is newer (for the given event tag and recipient) than the date of the sent email campaign, the content of the preview in the report may not correspond to the content actually sent (current event data is loaded in the preview).

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.

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