started work to add pod tests to all submodules.
[catagits/Catalyst-Plugin-Email.git] / README
CommitLineData
5a5a0df4 1NAME
2 Catalyst::Plugin::Email - Send emails with Catalyst
3
4SYNOPSIS
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
18DESCRIPTION
19 Send emails with Catalyst and Email::Send and Email::MIME::Creator.
20
21 METHODS
22 email
23SEE ALSO
24 Catalyst.
25
26AUTHOR
27 Sebastian Riedel, "sri@cpan.org"
28
29COPYRIGHT
30 This program is free software, you can redistribute it and/or modify it
31 under the same terms as Perl itself.
32