How to Integrate Digioh with Rejoiner

Rejoiner is a powerful email marketing platform that centralizes your customer data for sending high-converting, behavior-triggered emails. With Digioh, you can easily build Lightbox Pop-Ups that trigger when a user Exits, on a timer, or on specific URLs. You can also build embed forms, sidebars, banners, landing pages, paywalls, email preference centers, and more.

If you are setting up a Digioh integration by yourself, we first recommend reading about Digioh Integration Basics.

There are two ways to integrate Digioh with Rejoiner. We offer a backend integration and a Custom JS integration. Both are flexible enough to pass to any list and pass custom fields to Rejoiner. Our team is happy to set these integrations up for you as well.

Digioh to Rejoiner Integration (Backend)

1. From the “Integrations” tab, click on “New Integration.” Select “Rejoiner” in the drop-down.

2. Enter your Rejoiner Account ID, List ID, and API Key.

Repeat this process if you want to pass to other List IDs. You can also tie a Digioh form to multiple integrations to push emails to multiple lists.

Digioh to Rejoiner Integration (Custom JS)

1. Click on “Custom JS Boxes” in your Digioh account.

2. Copy/Paste the code below in your Custom JS Boxes account and replace the setAccount, setDomain, and list_id values with your Rejoiner Account, Domain, and list_id information.

Copy/paste this custom JavaScript and add your Account, Domain, and list ID:

if (!top._rejoiner) {
top._rejoiner = top._rejoiner || [];
top._rejoiner.push(['setAccount', 'mvXXXX']);
top._rejoiner.push(['setDomain', 'www.yourwebsite.com']);
(function() {
var s = top.document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//cdn.rejoiner.com/js/v4/rj2.lib.js';
var x = top.document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
})();
}

top._rejoiner.push(['subscribeToList', {
'email': x.email,
'list_id': 'D0XXX',
'first_name': x.first_name,
'last_name': x.last_name
}]);


Both integrations can have Digioh set to No Data Storage. This means we don’t store any data on our servers; data is directly pushed to Rejoiner.

Digioh is also fully GDPR and CCPA compliant. You can easily delete any infornamtion in your Digioh account at any time.