Track UTMs with Sleeknote
Add the code in your page and you will be all set!
xxxxxxxxxx
1
document.addEventListener('sleekNote', function (e) {
2
if (e.data.type == 'submit'){
3
data = e.data.data
4
Cookies.set('email', data.email)
5
_segq.push(["identify", data.email]);
6
}
7
}, false);