Changeset 8032 for lang/perl/App-MadEye

Show
Ignore:
Timestamp:
03/17/08 15:57:18 (9 months ago)
Author:
tokuhirom
Message:

Notify::Email: added docs, added schema.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-MadEye/trunk/lib/App/MadEye/Plugin/Notify/Email.pm

    r7565 r8032  
    22use strict; 
    33use warnings; 
    4 use base qw/Class::Component::Plugin/; 
     4use base qw/App::MadEye::Plugin::Base/; 
    55use Params::Validate; 
    66use MIME::Lite; 
     
    4141 
    42421; 
     43__END__ 
     44 
     45=head1 NAME 
     46 
     47App::MadEye::Plugin::Notify::Email - notify by email 
     48 
     49=head1 SCHEMA 
     50 
     51    type: map 
     52    mapping: 
     53        from_addr: 
     54            type: str 
     55            required: yes 
     56        to_addr: 
     57            type: str 
     58            required: yes 
     59 
     60=head1 SEE ALSO 
     61 
     62L<App::MadEye>, L<MIME::Lite> 
     63