| Email-Sender documentation | Contained in the Email-Sender distribution. |
Email::Sender::Role::HasMessage - an object that has a message
version 0.110001
This attribute is a message associated with the object.
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::Role::HasMessage; BEGIN { $Email::Sender::Role::HasMessage::VERSION = '0.110001'; } use Moose::Role; # ABSTRACT: an object that has a message has message => ( is => 'ro', required => 1, ); no Moose::Role; 1; __END__