Hi,

This may help slightly:
I have a custom condition that triggers whenever a Watcher is added as an AdminCc. You would have to change this to Requestor. Currently my scrip sends to all AdminCcs on triggering. You would need a Custom Action as well to send a message to the new Requestor only.


Custom Condition:

my $transactionType = $self->TransactionObj->Type;
my $watcherType = $self->TransactionObj->Field;
if (($transactionType eq 'AddWatcher') and ($watcherType eq 'AdminCc')) {
return 1;
}
return 0;


Taan
_______________________________________________
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users

Community help: http://wiki.bestpractical.com
Commercial support: [EMAIL PROTECTED]


Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com

Reply via email to