Skip to main content

Bloom Integration for UTM collection

Here we are going to explain just for ActiveCampaign, but this is pretty much applicable to any email service provider (CRM) available in GBS.

1) Authorize your ActiveCampaign in Bloom.

We are not going to cover this part here, there is tutora

2) Add the custom fields to your Bloom opt-in

Click gear icon for the optin and design. Scroll down to Custom Fields and select "Yes" and all the custom fields as shown below.

3) Add the following script to your footer section of the optin form.

<script>
jQuery( document ).ready(function() {
  jQuery('*[placeholder="UTM_Campaign"]').val(Cookies.get("utm_campaign"))
  jQuery('*[placeholder="UTM_Source"]').val(Cookies.get("utm_source"))
  jQuery('*[placeholder="UTM_Medium"]').val(Cookies.get("utm_medium"))
  jQuery('*[placeholder="UTM_Content"]').val(Cookies.get("utm_content"))
});
</script>