Hi Folks, Hope we have many Adobe Campaign experts in this group. I need some help if someone has done it already and provide the code snippet or send me to the right direction.
Ask: While sending email deliveries there are some seed addresses which are getting targeted along with the target audience. We want that email which goes to the seed addresses has the subject line prefixed with a text i.e. "Client Name Seed Email: " and to the regular audience it should go with regular subject.
Proposed Solution: I believe we can create a control typology rule/Typology to check if the recipient is a seed or not seed and based on that change the subject line.
If someone can help in implementing this solution it will be helpful.
Solved! Go to Solution.
Views
Replies
Total Likes
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:
What you can do add following personalization code to subject line.
<% if ( message.seedMember == 1) {%>Seed: <%}%>
Should have worked but is not
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
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
Views
Replies
Total Likes
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:
What you can do add following personalization code to subject line.
<% if ( message.seedMember == 1) {%>Seed: <%}%>
Should have worked but is not
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
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
Views
Replies
Total Likes
Hello,
We were able to do this by extending the recipient table to add a "seed" fieldname. We populated this fieldname ONLY for seed addresses - not for any recipients. Then in subject line we would just prefix with <%= recipient.seedFieldName %> and for seed emails only, this would populate. Hope that makes sense. Thanks!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies