I am trying to send an alert when a group status changes and i want to send the list of members and status of each of them
when the alert triggers.so i edit the Alert me when a groups status changes
and in the email i tried to used
${GroupMemberName}
${GroupMemberStatusID}
but it only return the first member
then i tried SQL query
something like this :
${SQL:SELECT Containers_AlertsAndReportsData.GroupName AS Group_Name,Containers_AlertsAndReportsData.GroupStatusDescription AS Group_Status,Containers_AlertsAndReportsData.GroupMemberName AS Group_Member_Name,Containers_AlertsAndReportsData.GroupMemberStatusDescription AS Group_Member_Status FROM Containers_AlertsAndReportsData Where GroupID=${GroupID}}
which is return what i want in SQL but in email i can only see the first member
what should i do ?