How to identify anonymous website visitors as contacts
ConvertFlow automatically identifies website visitors when they submit their email address in ANY form on your website, including ConvertFlow forms.
Once a visitor is identified as a contact, ConvertFlow researches their social profiles to help build an insightful profile for you and your team.
You can also personalize your website by targeting calls-to-action to identified contacts based on who they are, what they've done and the subscriber data stored in your email marketing software.
This means you can target people based on their tags, lists etc.
How to identify existing contacts from your email marketing software
Here are detailed articles for our integrations...
Targeting website visitors by AWeber lists
Targeting website visitors by Active Campaign contact data
Targeting website visitors by Autopilot contact data
Targeting website visitors by ConvertKit tags & custom fields
Targeting website visitors by HubSpot contact data
How to identify existing contacts from any URL
ConvertFlow will identify a contact if you include a person's email address in the URL with any of these URL parameters.
cf_email
email
Email
EmailAddress
email_address
emailaddresss
How to identify a contact using ConvertFlow's client-side API
If you're using ConvertFlow on an app, you can identify users by accessing ConvertFlow's client-side API.
Here's a snippet you can use, just replace EMAIL_ADDRESS_HERE with a string of your contact's email address.
The option "override" can be set to false if you want to ConvertFlow to identify someone if the visitor isn't already tracked as a contact.
jQuery(document).on('cfReady', function() { convertflow.identify({email: 'EMAIL_ADDRESS_HERE', override: true}); });