NAME

Email::Sender::Server::Client - Email Delivery Agent

VERSION

version 0.01_01

SYNOPSIS

# sending email is simple

my $mailer  = Email::Sender::Server::Client->new;

my @message = (to => '...', subject => '...', body => '...');

my $msg_id  = $mailer->message(@message); # non-blocking

if ($mailer->error_count) {
    
    print $mailer->errors_to_string;
    
}

DESCRIPTION

Email::Sender::Server::Client is the email delivery agent which passes messages to the Email::Sender::Server to be queued for delivery.

This class uses the Validation::Class object system, please see that library for more information on any foreign methods mentioned herewith.

AUTHOR

Al Newkirk <awncorp@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by awncorp.

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