big addition, have fun
[catagits/Catalyst-Plugin-Email.git] / README
1 NAME
2     Catalyst::Plugin::Email - Send emails with Catalyst
3
4 SYNOPSIS
5         use Catalyst 'Email';
6
7         __PACKAGE__->config->{email} = qw/SMTP smtp.oook.de/;
8
9         $c->email(
10             header => [
11                 From    => 'sri@oook.de',
12                 To      => 'sri@cpan.org',
13                 Subject => 'Hello!'
14             ],
15             body => 'Hello sri'
16         );
17
18 DESCRIPTION
19     Send emails with Catalyst and Email::Send and Email::MIME::Creator.
20
21   METHODS
22    email
23 SEE ALSO
24     Catalyst.
25
26 AUTHOR
27     Sebastian Riedel, "sri@cpan.org"
28
29 COPYRIGHT
30     This program is free software, you can redistribute it and/or modify it
31     under the same terms as Perl itself.
32