Email::AutoReply::Recipient - recipient of an autoreply


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

Index


Code Index:

NAME

Top

Email::AutoReply::Recipient - recipient of an autoreply

DESCRIPTION

Top

This simple object wraps a recipient of an Email::AutoReply autoresponse.

ATTRIBUTES

email

Set/get the email address of this recipient. Expect the value to be something like adamm@example.com, ie: an email address without any decorations.

timestamp

Set/get the timestamp for this recipient. This is a UNIX timestamp (seconds since the epoch) representing when this person received an autoresponse.

AUTHOR

Top

Adam Monsen, <haircut@gmail.com>

SEE ALSO

Top

Email::AutoReply

COPYRIGHT AND LICENSE

Top


Email-AutoReply documentation Contained in the Email-AutoReply distribution.
package Email::AutoReply::Recipient;
our $rcsid = '$Id: Recipient.pm 3002 2008-06-05 20:23:24Z adam $';

use strict;
use warnings;

use Spiffy '-Base';

field 'email';

field 'timestamp';

return 1;

__END__