Setting up personalisation for Adobe Campaign

Before setting up personalisation in Taxi from Adobe, you'll need to set up personalisation in your account.

Personalisation fields in Adobe Campaign use the following style of notation:

<%=targetData.firstName %>

These are set up in the personalisation settings in Taxi. Below is what this will look like in Taxi.

These will become available in rich text fields in the editor.

You can add as much or as little code here as you like, so it’s possible to use Adobe Campaign’s javascript code to do things like use a default name:

<% if( recipient.firstName == '' || recipient.firstName == null){ %>Valued Customer<% } else { %><%= recipient.firstName %><% } %>

Last updated