import rt 2.0.14
[freeside.git] / rt / lib / RT / Action / NotifyAsComment.pm
diff --git a/rt/lib/RT/Action/NotifyAsComment.pm b/rt/lib/RT/Action/NotifyAsComment.pm
new file mode 100755 (executable)
index 0000000..c72bfff
--- /dev/null
@@ -0,0 +1,25 @@
+#$Header: /home/cvs/cvsroot/freeside/rt/lib/RT/Action/NotifyAsComment.pm,v 1.1 2002-08-12 06:17:07 ivan Exp $
+
+package RT::Action::NotifyAsComment;
+require RT::Action::Notify;
+@ISA = qw(RT::Action::Notify);
+
+
+=head2 SetReturnAddress
+
+Tell SendEmail that this message should come out as a comment. 
+Calls SUPER::SetReturnAddress.
+
+=cut
+
+sub SetReturnAddress {
+       my $self = shift;
+       
+       # Tell RT::Action::SendEmail that this should come 
+       # from the relevant comment email address.
+       $self->{'comment'} = 1;
+       
+       return($self->SUPER::SetReturnAddress(is_comment => 1));
+}
+1;
+