Emulate ND7s Inbox Recipient Ranking
In the next release of Notes/Domino (version 7) there is a new column added within your inbox that visually indicates the ranking or importance of the email based on the presence of your name in either the To or CC field.
Today I altered my Notes 6.5.4 mail template to include this same functionality:
—Emulate ND7’s Inbox Recipient Message Marking.
If someone sends you an email and your name is in the TO: field there will be a red icon present. If your name is in the CC: field it will be yellow. If your name is in the TO: field but more then 5 people are listed in the TO: field it will be maroon. No support for groups yet.
Edit the ($inbox) folder and add a new column with the following:
a1 := @If(@Contains(@Name([CN];SendTo);@Name([CN];@UserName));115;”");
a2 := @If(@Contains(@Name([CN];CopyTo);@Name([CN];@UserName));120;a1);
a3 := @If(@Elements(SendTo) > 5;116;a2);
a3