If you use Creabl, you'd probably like to record your leads into a Creabl platform and qualify them as leads. It will give you the power to group them and interact with them in a proper way.
In order to do it, please follow the next steps:
1. First of all, you need to install the Creabl script.
2. After the script has been successfully initialized and the system confirmed that it's installed properly, go to Settings > User Data > Default Attributes, click Copy attribute code on Signed Up default attribute.
It looks next:
<script> Creabl.exec("register", {"email": "email@example.com"}); </script>
You should paste it right before </head> tag on all the pages that you want to track.
What "register" function actually does?
It sets users email and signedUp custom Attributes for the first time only. In case signedUp is already set, it won't be updated.
Also, you can record your user's data by sending an email attribute.
Go to Settings > User Data > Default Attributes, click "Copy attribute code" on Email default attribute.
The next code snippet will be copied to the clipboard:
<script> Creabl.setAttributes({"email": "CUSTOM_VALUE"}); </script>
Just replace "CUSTOM_VALUE" with your user's email and put this code snippet right before </head> tag on all the pages that you want to track.
If email sets for the first time, it'll set signedUp attribute also, because technically it is another way to sign up.