Hi,
We have an urgent requirement where we need to color code an email sent as Urgent. From what I know, I did the following:
1. Created a hidden field "Urgent" whose value is 0 in the "Memo" form.
2. Created a button in the memo form which sends the email normally while setting the value of the "Urgent" field as 1.
3. I tweaked the code in the $Sender1 field of the "CalendarProfile" form as below:
S_0B1 := \"00FF0000\";
S_0F1 := \"00FFFFFF\";
color01 := S_0B1 : S_0F1 ;
@If(
@IsAvailable(Urgent) & Ugent=1; color01;
@Contains(LCfrom; list1) & list1 != \"\"; color1;......
It is of no use. Then tried the below.
4. In the $Inbox folder, added the below line in the first column "ColorColumn(Hidden)"
@If(Urgent = 1;255:0:0:255:255:255;@UserName)
Still, I couldn't see any difference. Can someone point out what I'm doing wrong and what should have been done?
Thanks & Regards,
Satish.
