- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
The name of your client doesn't add useful information, please redact.
Have you tried using recipient id with modulus? E.g.:
<%=
recipient.id % 4 === 0 ? 'sl 1' :
recipient.id % 4 === 1 ? 'sl 2' :
recipient.id % 4 === 2 ? 'sl 3' :
'sl 4'
%>
Thanks,
-Jon