On meta, how do we populate the email
On meta, how do we populate the email user_data, I tried using userdata in the data payload and adding em fn ln, but it doesnt trigger as working on meta. It just shows userdata.em.0 under dataJson and doesnt register
10 Replies
Have you selected the
Email
field within the tool settings and sent the email through there?isnt that for sending static data?
What do you mean by static data?
How do I use the email field within the tool settings?
@Mackenly Jones what do I put inside here
event property?
Yes, an event property. Event propoerties can be something you've saved in the user's browser that comes along with every track using
zaraz.set()
or something you've passed along on a zaraz.track()
call. I would suggest setting things like emails using the persist option of zaraz.set()
since that will let you send that email along on any other tools and on other pages than just where you've collected it.
To use an event property, you press the plus button in the input field, select Event Property from the list, and then enter the property name. You can also create variables that pull from the Event Property if you want to make it easier and then use the variable in the field.do you send it hashed or unhashed
It should hash it for you: https://github.com/managed-components/facebook-pixel/blob/7196dc2c16010e25146a3530758a7ee66cc49fd9/src/track.ts#L131
GitHub
facebook-pixel/src/track.ts at 7196dc2c16010e25146a3530758a7ee66cc4...
Track user activity using Facebook Pixel. Contribute to managed-components/facebook-pixel development by creating an account on GitHub.
it worked! thank you @Mackenly Jones