My customer wants to encrypt sensitive data (subscriberkey) in email urls. The url points to external webpages.
I guess we could use EncryptSymmetric if it wasn't so that the subscriberkey is added automatically to all links from email_XtraLinkParameters which are handled in Setup > Parameter Management.
A bit shortened, that tracking string looks like this: ven=ExactTarget&%%__AdditionalEmailAttribute5%%&scid=%%_subscriberkey%%
So a link that plainly would look like this in the actual email:
will look like this in the inbox:
https://www.example.com?ven=ExactTarget&%%__AdditionalEmailAttribute5%%&scid=003abcdefghijklmno
So hence my question: Is there any way to encrypt the bit that comes after "&scid=" ?
Currently I think our only option is to remove the subscriberkey from those parameters and then just add when needed on links within the email itself. That way we can encrypt it, and I guess decode on the external site. But removing the subscriberkey from "email_XtraLinkParameters" is our last resort as it is needed in other scenarios.
Ideas?