Last active
September 2, 2015 23:47
-
-
Save ronnieduke/f6e31445c17f6b15908c to your computer and use it in GitHub Desktop.
Marketo Munchkin associateLead CFML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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