Hi guys,
Can someone suggest if there's a way or how can we access structures and its properties in SIL email templates ? Suppose my struct looks like -
struct PendingApprovals{
string action;
string actor_key;
string date_created;
string date_from;
string date_to;
string reviewer_key;
string status;
string user_key;
}
I have a variable defined in my sil script as -
PendingApprovals[] pa = <an array of the struct>
I want to be able to access this array of structure and the individual properties in the template.
Thanks in advance,
Neha