Share Product and catch email id by using Adobe Launch or Adobe Target | Community
Skip to main content
Luca_Lattarini
Level 9
June 8, 2020
Solved

Share Product and catch email id by using Adobe Launch or Adobe Target

  • June 8, 2020
  • 1 reply
  • 1545 views

Hello everyone,

 

I want to track when customer share a product with other users (prospect or customer). How can i catch the email id or social account by using Launch or AT?

thanks

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by raj_mandalapu

The below link helps us to place custom javascript at launch, but here, you need to get the email HTML element class name or id attribute to fetch email address and at the same time, you need to get the share button class name or id attribute to perform client event. based on this you need to write your custom logic.

 

https://docs.adobe.com/content/help/en/core-services-learn/implementing-in-websites-with-launch/configure-launch/launch-data-elements-rules.html

 

Alternative way is you can do the same thing in the frontend.

 

You need to get the logged-in email id in the custom javascript, then on click event of share button build data layer JS object and send it to the _satellite.track("shareButton") method.

 

 

 

1 reply

raj_mandalapu
raj_mandalapuAccepted solution
Level 7
June 8, 2020

The below link helps us to place custom javascript at launch, but here, you need to get the email HTML element class name or id attribute to fetch email address and at the same time, you need to get the share button class name or id attribute to perform client event. based on this you need to write your custom logic.

 

https://docs.adobe.com/content/help/en/core-services-learn/implementing-in-websites-with-launch/configure-launch/launch-data-elements-rules.html

 

Alternative way is you can do the same thing in the frontend.

 

You need to get the logged-in email id in the custom javascript, then on click event of share button build data layer JS object and send it to the _satellite.track("shareButton") method.