Skip to content

lonerr/Dancer-Plugin-Email

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 100.0%