Dave Rolsky > Log-Dispatch-2.21 > Log::Dispatch::Email

Download:
Log-Dispatch-2.21.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  5
Open  3
View Bugs
Report a bug
Module Version: 1.19   Source   Latest Release: Log-Dispatch-2.26

NAME ^

Log::Dispatch::Email - Base class for objects that send log messages via email

SYNOPSIS ^

  package Log::Dispatch::Email::MySender

  use Log::Dispatch::Email;
  use base qw( Log::Dispatch::Email );

  sub send_email
  {
      my $self = shift;
      my %p = @_;

      # Send email somehow.  Message is in $p{message}
  }

DESCRIPTION ^

This module should be used as a base class to implement Log::Dispatch::* objects that send their log messages via email. Implementing a subclass simply requires the code shown in the SYNOPSIS with a real implementation of the send_email() method.

METHODS ^

AUTHOR ^

Dave Rolsky, <autarch@urth.org>