File Coverage

blib/lib/App/Bulkmail.pm
Criterion Covered Total %
statement 18 87 20.6
branch 0 40 0.0
condition 0 15 0.0
subroutine 6 8 75.0
pod 1 2 50.0
total 25 152 16.4


line stmt bran cond sub pod time code
1             package App::Bulkmail;
2              
3 1     1   25286 use warnings;
  1         2  
  1         28  
4 1     1   6 use strict;
  1         2  
  1         57  
5              
6             =head1 NAME
7              
8             App::Bulkmail - Simple but flexible bulkmailer
9              
10             =cut
11              
12             our $VERSION = '0.02';
13              
14             =head1 SYNOPSIS
15              
16             use App::Bulkmail;
17            
18             App::Bulkmail->run();
19              
20             ... or
21              
22             App::Bulkmail->run(
23             dryrun => 1,
24             dump => 1,
25             template => 'mail.tt',
26             recipients => [
27             { email => 'joe@example.net', name => 'Joe Doe' },
28             { email => 'jane@example.net', name => 'Jane Roe' },
29             ],
30             );
31              
32             =head1 ARGUMENTS
33              
34             =over 4
35              
36             =item B