Custom JS Functions in adobe campaign classic | Community
Skip to main content
nitesha38268385
Level 2
September 15, 2020
Solved

Custom JS Functions in adobe campaign classic

  • September 15, 2020
  • 1 reply
  • 4545 views

Hi Folks,

 

I want to generate the encrypted personalized parameter for the URL in the email CTA.

These parameters will be encrypted using the AES algorithm using the custom keys, salt, and iv.

To achieve, this I am using the CryptoJS library in the adobe campaign classic. 

This process requires the Javascript functions to be executed against each record in the workflow. By, using CryptoJS Library Functions.

can we achieve this in the same manner as the escapeUrl(), cryptString() functions?

What I want to know is, how to make the custom JS function to be available to call in the delivery?

 

Any Help or suggestions in this regards is higly appreciated..

 

Thanks,

Nitesh Anwani

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 DavidKangni

Hi Nitesh,

 

Create your libraries in a perso blocks. Call your blocks at the beginning of your deliveries and then you can used function as in the url below

 

<%@ include view='AesLibrary' %> --> crypto js library
<%@ include view='AesModeOfOperation' %> --> crypto function (cbc, etc,)

 

href="http://xxxx.com/email_unsubscribe.aspx?email=<%= cbcEncrypt(recipient.targetData.email) %>&source=ACC"

 

Thanks,

David

1 reply

DavidKangni
Community Advisor
DavidKangniCommunity AdvisorAccepted solution
Community Advisor
September 15, 2020

Hi Nitesh,

 

Create your libraries in a perso blocks. Call your blocks at the beginning of your deliveries and then you can used function as in the url below

 

<%@ include view='AesLibrary' %> --> crypto js library
<%@ include view='AesModeOfOperation' %> --> crypto function (cbc, etc,)

 

href="http://xxxx.com/email_unsubscribe.aspx?email=<%= cbcEncrypt(recipient.targetData.email) %>&source=ACC"

 

Thanks,

David

David Kangni
nitesha38268385
Level 2
September 15, 2020

Hi @davidkangni,

Thanks for your response.

Just want to confirm if include the personalization block in delivery and that personalization block contains the library source code, does it will include that source code in the HTML code of the final email delivery?