Last updated 1 year ago
Was this helpful?
Dispatched when when a new member registers.
The detail field of the event contains a object.
detail
const handleMemberRegistration = ({ detail }) => { const { memberInfo } = detail; console.log(memberInfo.email) } document.addEventListener('MemberSpace.member.registration', handleMemberRegistration);