| Email-AutoReply documentation | Contained in the Email-AutoReply distribution. |
Email::AutoReply::Recipient - recipient of an autoreply
This simple object wraps a recipient of an Email::AutoReply autoresponse.
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.
Set/get the timestamp for this recipient. This is a UNIX timestamp (seconds since the epoch) representing when this person received an autoresponse.
Adam Monsen, <haircut@gmail.com>
Copyright (C) 2004-2008 by Adam Monsen
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.3 or, at your option, any later version of Perl 5 you may have available.
| 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__