Skip to content

Instantly share code, notes, and snippets.

@ronnieduke
Last active September 2, 2015 23:47
Show Gist options
  • Save ronnieduke/f6e31445c17f6b15908c to your computer and use it in GitHub Desktop.
Save ronnieduke/f6e31445c17f6b15908c to your computer and use it in GitHub Desktop.
Marketo Munchkin associateLead CFML
<cfoutput>
<script>
mktoMunchkinFunction('associateLead',
{
Email: "#esapiEncode('javascript',url.userEmail)#",
FirstName: "#esapiEncode('javascript',url.userFirst)#",
LastName: "#esapiEncode('javascript',url.userLast)#"
},
'#hash('mysecretkey' & url.userEmail,'SHA-1')#'
);
</script>
</cfoutput>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment