Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/racke/emailesque
Lightweight To-The-Point Email
https://github.com/racke/emailesque
Last synced: 5 days ago
JSON representation
Lightweight To-The-Point Email
- Host: GitHub
- URL: https://github.com/racke/emailesque
- Owner: racke
- Created: 2011-07-03T09:16:14.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-03T09:24:31.000Z (over 13 years ago)
- Last Synced: 2024-11-18T18:43:55.757Z (2 months ago)
- Language: Perl
- Homepage:
- Size: 87.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Emailesque - Lightweight To-The-Point Email
BASIC USAGES
use Emailesque qw/email/;
email {
to => '...',
from => '...',
subject => '...',
message => '...',
attach => [
'/path/to/file' => 'filename'
]
};
or
use Emailesque;
my $message = Emailesque->new({ driver => '...' });
$message->send({
to => '...',
subject => '...',
message => '...',
});To install this module using code from CPAN,
run the following commandsperl Makefile.PL
make
make test
make installTo install this module using code from the git repository,
run the following commands (Dist::Zilla required):dzil build
cd Emailesque-#.##
cpan .REPOSITORY
http://github.com/alnewkirk/Emailesque/
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.