How It Works

Find out how our solution helps you turn browsers into buyers.

Integrations

From Shopify to Klaviyo, explore over 80 integrations.

Support

Access guides, troubleshooting, and expert assistance.

About Us

Hear our origin story and meet our team.

Partnership

Become an official Retention.com Partner.

Affiliate Program

Learn more about our Affiliate Program.

Careers

Explore career opportunities with Retention.com.

Events

See upcoming events we’re hosting or attending.

Referrals

Got a referral? Let us know here.

Product Support

privacy-red-circle

All About Suppression

What is Suppression?

Suppression is the term we use for any scenario where you want to prevent Retention.com from identifying and collecting contacts. The main reasons you would do this are:

  1. To avoid paying Retention.com for contacts you already have. You likely have an existing database of customer emails, many of whom visit your site repeatedly. Since you already have those email addresses, there is no reason for us to identify or deliver those to you. 
  2. To prevent collection of contacts on your website where they are voluntarily giving you an email address. If you collect newsletter signups, have an e-commerce site, or use any other type of conversion event involving an email address, you don't need us to identify or deliver that email address to you.

To solve for both of these scenarios, we have multiple ways to suppress contacts in Retention.com, outlined below.

1. Suppress existing contacts via integration

This option is used to avoid paying Retention.com for contacts you already have. If, for example, joe@joeshmoe.com is already on your list and visits your website, Retention.com will not collect that email address and include it in your acquired contacts or charge you for it.

When you set up an integration in Retention.com, there is a separate section specifically for Suppression. (Not all integrations offer contact suppression, so you would need to manually suppress those contacts.)

Integration suppression section

One-time vs. daily suppression

You have the option to choose a one-time suppression or daily. We recommend daily. If you choose one-time, we will only suppress your existing list as is, and will not check your email app for newly added contacts daily. 

Once this specific section has been set up, saved, and the integration itself is Enabled, Retention.com will automatically run a suppression of your full list from the system you've integrated with. 

Enabled integration in GetEmails
The integration must be enabled for suppression to run!

As long as the integration is Enabled, the suppression feature will run once per day to check for any newly added contacts in your email app. If any are found, we will update your suppression list in Retention.com.**

Go to the Suppression Lists tab to ensure the number of unique records being suppressed matches the number in your ESP.

**Retention.com automatically suppresses any contact we collect for you so that we do not deliver duplicates.

Click here for a list of step-by-step tutorials for specific integrations like Klaviyo, Infusionsoft, Active Campaign, and more.

2. Upload a Suppression List

This option is also used to avoid paying Retention.com for contacts you already have. It lets you manually load a CSV file of email addresses in case you have additional lists/databases of email addresses that you do not want Retention.com to identify or collect. You might use this option if, for example, you go to a trade show (during non-pandemic times, of course!) and collect signups that do not end up in your email app.

Suppression lists loaded as a CSV file are converted into encoded MD5s for security reasons. We do not use, share, or resell this data for any purpose other than to prevent users from collecting and paying for contacts they already have.

To upload a Suppression List, click on Suppression Lists in the left-hand navigation.

Here are the file requirements for upload:

  • PLAIN TEXT EMAILS: Your file should only contain ONE column, labeled "email" of plain text emails OR
  • MD5 HASHES: Your file should contain ONE column, labeled "MD5" of properly formatted MD5 hashes. You must also click the checkbox for "File contains MD5 encoded emails" to load a file of MD5s
  • You'll also need to save it as an Excel .CSV file.
  • Maximum file size is 500MB. If your file is larger than this, split it up into several smaller files.

Once the file has uploaded, you will see a green box in the top right corner that says your file has been uploaded and is in the queue to be processed. Once that's complete, you'll see the stored file listed under the corresponding date. Make sure the number of unique records being suppressed matches the number in your ESP.

 

3. The suppression script

This option is used to prevent collection of contacts on your website where they are voluntarily giving you an email address. It does this in real-time.

The Suppression Script can be added to your website on any pages where you do NOT want Retention.com to collect email addresses. Generally speaking, you would put this script on landing pages where the person has already converted, and therefore you have already collected their email address.

Examples of pages you'd want to add the suppression script to are:

  • Post-checkout pages*
  • Post sign-up "Thank you" pages
  • Confirmation pages

The Suppression Script can be found under Code Snippet > View Script. Check the box next to Suppression, and then click Copy Code to save it to your clipboard:

Please note that if you use this script, make sure you do not place it on pages you do want the Retention.com Collection Snippet to work. If both scripts are on the same page, the Suppression snippet will override the Collection snippet.

*If you are using our Revenue Tracking script, you do not need to include the Suppression script as well—our revenue tracking script will automatically include/call the suppression script.

Remember: Our verification tool will only show the suppression and/or revenue tracking scripts are found/firing if you test the specific URL they are on (ex. post-checkout page).

4. Set suppression rules

You can also set rules to automatically trigger a suppression event on your site, which will prevent the collection of contacts from that page(s). The base Retention.com script still needs to be loaded on any page you want to suppress.

Note: You will need to manually add the suppression script for sign-up or login forms.

1. From the Code Script tab, click the edit icon next to Suppression Rules.

URL CONTAINS EMAIL UTM:

2. We automatically prevent the collection of contacts that come to your site from email campaigns. We do this because you will have existing contacts who own more than one email address, and will not want to add them to a new email marketing flow if they are already in your system.

These contacts are identified by checking the referring URL that brought them to your site; if that URL contains UTM parameters with the word "email" in them, we will ignore/suppress those contacts. To disable that function, toggle to No.

URL TRIGGERS:

To trigger the suppression script on specific URLs where the base script is already present, add the full or portion of the URL in the first text box. Example: /blog. Any URL that contains that text will trigger the suppression event.

URLS with SPECIFIC PARAMETERS:

You can also set the suppression script to trigger on URLs with specific parameters. For example, you can use this to exclude traffic sources like Facebook, or other UTM identifiers. Any URL parameter with this text will trigger the suppression event.

3. When you've set your Suppression Rules, click Save Changes. You will then see the Suppression Rules you've set up.

5. How to suppress button clicks

If you have buttons and/or pop-ups on your site where visitors can submit their email addresses, you will need to add the suppression script to fire on the on-click event. That keeps you from collecting email addresses from Retention.com that you collected on your own.

The exact structure and script will vary depending on the platform you're using for your button/pop-up.

Here's an example of what an on-click event event looks like:

<script>
document.getElementById("SpecialButtonHere").addEventListener('submit',function (){ 
geq.supress(); });
</script>

This is an example if you're using Klaviyo forms for how to add the call for suppression—'geq.suppress();'—following the on-click event ('submit' in this example).

<script>
window.addEventListener("klaviyoForms", function(e) {
if (e.detail.type == 'submit') {
geq.suppress();
}
});
</script>

You can also set up the on-click event to fire based on the ClassName:

<script>
var classname = document.getElementsByClassName("FormName");
for (var i = 0; i < classname.length; i++) {
classname[i].addEventListener('submit', function() {geq.suppress()});
}
</script>

Once the suppression script is successfully added to your on-click event, it should show the suppression script is found but not firing when you verify the scripts using our verification tool (Code Script > Test Script).

6. How can I confirm my suppression script is working?

In the graph in the Dashboard or Trends tab, you can look for real-time suppression script events to confirm it's firing. The red line represents your number of suppressed contacts. If you hover your cursor over a specific day, it will show the exact number of suppressed contacts.

Once you've installed your suppression script, it may take anywhere from minutes to days to see these events show up, depending on your overall website traffic.

chevron-down