| Email-Sender documentation | Contained in the Email-Sender distribution. |
Email::Sender::Success - the result of successfully sending mail
version 0.110001
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.
Ricardo Signes <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__