RT::Action::NotifyGroupAsComment - RT Action that sends notifications


RT-Action-NotifyGroup documentation Contained in the RT-Action-NotifyGroup distribution.

Index


Code Index:

NAME

Top

RT::Action::NotifyGroupAsComment - RT Action that sends notifications to groups and/or users as comment

DESCRIPTION

Top

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.

AUTHOR

Top

	Ruslan U. Zakirov
	cubic@wildgate.miee.ru

COPYRIGHT

Top


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;