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

NAME

Eve::Email - a wrapper for the Email::Sender::Simple library.

SYNOPSIS

    use Eve::Email;

    my $mailer = Eve::Email->new();

    $mailer->send(to => $address, subject => $subject, body => $body);

Constructor arguments

from

The from address line that will be added to each sent email.

METHODS

init()

send()

Send an email body with a certain subject to a certain recipient.

Arguments

to
subject
body

LICENSE AND COPYRIGHT

Copyright 2012 Igor Zinovyev.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

AUTHOR

Igor Zinovyev