The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
###############
# MAKEFILE.PL #
###############

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'          => 'Mail::SendEasy' ,
    'VERSION_FROM'  => 'lib/Mail/SendEasy.pm' ,
    #'PREREQ_PM'     => {'Foo'  => 0.01} ,
    ($] >= 5.005 ?
      ( ABSTRACT_FROM => 'lib/Mail/SendEasy.pm',
        AUTHOR        => 'Graciliano M. P. <gm@virtuasites.com.br>'
       ) : ()
     ),
);

1;