| Email-Sender documentation | Contained in the Email-Sender distribution. |
Email::Sender::Success::Partial - a report of partial success when delivering
version 0.110001
These objects indicate that some deliver was accepted for some recipients and
not others. The success object's failure attribute will return a
Email::Sender::Failure::Multi describing which parts of the delivery failed.
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::Partial; BEGIN { $Email::Sender::Success::Partial::VERSION = '0.110001'; } use Moose; extends 'Email::Sender::Success'; # ABSTRACT: a report of partial success when delivering use Email::Sender::Failure::Multi; has failure => ( is => 'ro', isa => 'Email::Sender::Failure::Multi', required => 1, ); __PACKAGE__->meta->make_immutable; no Moose; 1; __END__