- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi @AM18 ,
As @Manoj_Kumar_ mentioned, if else statement will help you to achieve your requirement.
To get [SEED] only for seed addresses you can follow this trick. When creating a Seed address, select any of the column which you are not going to use in email personalisation. For Example, if you are not going to use @middleName in your email personalisation, then when creating Seed Address, in middle name give some random text like 'ThisIsSeedAddress123456' and save the seed.
Now in Subject line, Paste the below code.
<% if ( recipient.middleName == 'ThisIsSeedAddress123456' ) { %>
[SEED] Subject line of your delivery
<% } %>
<% else { %>
Subject line of your delivery
<% } %>
So now the seed addresses with middleName 'ThisIsSeedAddress123456' will be receiving email with subject line '[SEED] Subject line of your delivery' and other recipients will be getting actual Subject line.
Regards,
ParthaSarathy S
Views
Replies
Total Likes