Avatar

Correct answer by
Community Advisor

Hello,

I think that you are not able to change content of message (for one recipient, for all you can I would say) with typology rules.

They are used for:

  1. Filtering -> take out target 
  2. Pressure -> take out target
  3.  Capacity -> dripping the messages 
  4. Control -> message validation like subject line etc.

https://docs.adobe.com/content/help/en/campaign-classic/using/orchestrating-campaigns/campaign-optim...

 

 

 

 

What you can do add following personalization code to subject line.

 

<% if ( message.seedMember == 1) {%>Seed: <%}%>

 

Should have worked but is not :disappointed_face: this flag is changed after the message is dispatched.

 

I have tried to add additional data for the seed addresses:

 

<targetData>
<isSeed>1</isSeed>
</targetData>

 

Is not working.. either.. i guess you need to have this targetData also with main population

 

Then i tried to add prefix in seed name such as seed joe...

<% if (recipient.firstName.indexOf('Seed')!=-1){%>Seed: <%}%> I am not the Genie in the lamp.

ba dum tsss.. it worked

 

marcel_gent_86_0-1588586837148.png

As a starting point you can use this and then try to find how to get the information on whether is the recipient seed or not while personalization

 

Marcel

 

 

View solution in original post