| RT-Action-NotifyGroup documentation | Contained in the RT-Action-NotifyGroup distribution. |
RT::Action::NotifyGroupAsComment - RT Action that sends notifications to groups and/or users as comment
This is subclass of RT::Action::NotifyGroup that send comments instead of replies.
See rt-notify-group-admin and RT::Action::NotifyGroup docs for more info.
Ruslan U. Zakirov cubic@wildgate.miee.ru
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with perl distribution.
| RT-Action-NotifyGroup documentation | Contained in the RT-Action-NotifyGroup distribution. |
package RT::Action::NotifyGroupAsComment; use strict; our $VERSION = '0.01';
use RT::Action::NotifyGroup; local @RT::Action::NotifyGroup::ISA = qw(RT::Action::NotifyAsComment); use base qw(RT::Action::NotifyGroup);
1;