Email::Sender::Success - the result of successfully sending mail


Email-Sender documentation Contained in the Email-Sender distribution.

Index


Code Index:

NAME

Top

Email::Sender::Success - the result of successfully sending mail

VERSION

Top

version 0.110001

DESCRIPTION

Top

An Email::Sender::Success object is just an indicator that an email message was successfully sent. Unless extended, it has no properties of its own.

AUTHOR

Top

Ricardo Signes <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Email-Sender documentation Contained in the Email-Sender distribution.

package Email::Sender::Success;
BEGIN {
  $Email::Sender::Success::VERSION = '0.110001';
}
use Moose;
# ABSTRACT: the result of successfully sending mail


__PACKAGE__->meta->make_immutable;
no Moose;
1;

__END__