Dancer-Plugin-Email - Simple email handling for Dancer applications using Email::Stuff!

BASIC USAGES

 use Dancer;
 use Dancer::Plugin::Email;

 post '/contact' => sub {

     email {
         to => '...',
         subject => '...',
         message => $msg,
         attach => [
             '/path/to/file' => 'filename'
         ]
     };

 };

To install this module using code from CPAN,
run the following commands

 perl Makefile.PL
 make
 make test
 make install

To install this module using code from the git repository,
run the following commands (Dist::Zilla required):

 dzil build
 cd Dancer-Plugin-Email-#.##
 cpan .

REPOSITORY

   http://github.com/awnstudio/Dancer-Plugin-Email/

COPYRIGHT AND LICENCE

Copyright (C) 2010 Al Newkirk

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.