Query: log::agent::driver::mail
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Agent::Driver::Mail(3pm) User Contributed Perl Documentation Agent::Driver::Mail(3pm)NAMELog::Agent::Driver::Mail - email driver for Log::AgentSYNOPSISuse Log::Agent; require Log::Agent::Driver::Mail; my $driver = Log::Agent::Driver::Mail->make( -to => 'oncall@example.org', -cc => [ qw( noc@example.org admin@example,net ) ], -subject => "ALERT! ALERT!", -mailer => [ 'smtp', Server => 'mail.example.net' ] ); logconfig(-driver => $driver);DESCRIPTIONThis driver maps the logxxx() calls to email messages. Each call generates a separate email message. The Mail::Mailer module is required.CONSTRUCTORmake OPTIONS The OPTIONS argument is a hash with the following keys: -prefix An optional prefix for the message body. -to The destination addresses, may be a scalar containing a valid email address or a reference to an array of addresses. -reply_to The reply-to addresses, may be a scalar containing a valid email address or a reference to an array of addresses. -from The source address, must be a scalar containing a valid email address. -subject The subject line of the email message. -cc The carbon copy addresses, may be a scalar containing a valid email address or a reference to an array of addresses. -bcc The blind carbon copy addresses, may be a scalar containing a valid email address or a reference to an array of addresses. -priority The priority level for the email message. This is NOT related to the logging priority. -mailer A reference to an array containing the optional arguments to Mail::Mailer->new(). Generally, this can be omitted.NOTESThanks to Shirley Wang for the idea for this module.AUTHORMark Rogaski <mrogaski@pobox.com>LICENSECopyright (C) 2002 Mark Rogaski; all rights reserved. See Log::Agent(3) or the README file included with the distribution for license information.SEE ALSOMail::Mailer, Log::Agent::Driver(3), Log::Agent(3). perl v5.10.0 2002-05-12 Agent::Driver::Mail(3pm)
| Related Man Pages |
|---|
| log::dispatch::email(3) - suse |
| log::agent::driver(3pm) - debian |
| log::agent::file::rotate(3pm) - debian |
| log::agent::tag::priority(3pm) - debian |
| mail::rfc822::address(3pm) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| error-when trying to send the message thru email. |
| Mail in bash |
| I didnt get the activation email !! |
| Sending sql output to email body with conditional subject line |
| Mail command help |