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


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>

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