Returns the list of recipients for the subscription.
@subscription::getRecipients()
None
(List) List of Subscription notification recipients
This example processes the subscription for an event, and logs the recipients for each matching subscription.
$subscriptionList = @event::getSubscriptions()
FOR ($subscriptionId : $subscriptionList )
@subscription = @event::getSubscription($subscriptionId)
$subRecipients = @subscription::getRecipients()
# Print out the Recipients to the log
$strBuf = $subRecipients::toPrintString()
@script::log("Subscription : " & $subscription.name &" Recipients: " & $strBuf)
ENDFOR