Dave Rolsky > Log-Dispatch-2.10 > Log::Dispatch::Email::MIMELite

Download:
Log-Dispatch-2.10.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::MIMELite - Subclass of Log::Dispatch::Email that uses the MIME::Lite module

SYNOPSIS ^

  use Log::Dispatch::Email::MIMELite;

  my $email =
      Log::Dispatch::Email::MIMELite->new
          ( name => 'email',
            min_level => 'emerg',
            to => [ qw( foo@bar.com bar@baz.org ) ],
            subject => 'Oh no!!!!!!!!!!!', );

  $email->log( message => "Something bad is happening\n", level => 'emerg' );

DESCRIPTION ^

This is a subclass of Log::Dispatch::Email that implements the send_email method using the MIME::Lite module.

METHODS ^

AUTHOR ^

Dave Rolsky, <autarch@urth.org>