=head1 NAME Catalyst::Plugin::Mail::Sender - Send emails with Catalyst =head1 SYNOPSIS use Catalyst 'Mail::Sender'; =head1 DESCRIPTION Send emails with Catalyst and L. =head1 CONFIGURATION C accepts the same options as L. __PACKAGE__->config->{mailsender} = { from => "Thiago Rondon ", smtp => "mail.examplennn.com.br", auth => 'LOGIN', authid => "tbr\@examplennn.com.br", authpwd => "password", headers => "MIME-Version: 1.0\r\nContent-type: text/html\r\nContent-Transfer-Encoding: 7bit", debug => "/var/tmp/mail.sender.debug" }; =head1 METHODS C is MailMsg() shortcut of L to a simple message. $c->mailsender({ to => "to@examplennn.com.br", subject => "Plugin Mail::Sender", msg => "Hello", }); =head1 SEE ALSO L, L, =head1 AUTHOR Thiago Berlitz Rondon, C =head1 COPYRIGHT This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =cut