package Email::AutoReply::Recipient; our $rcsid = '$Id: Recipient.pm 3002 2008-06-05 20:23:24Z adam $'; use strict; use warnings; use Spiffy '-Base'; =head1 NAME Email::AutoReply::Recipient - recipient of an autoreply =head1 DESCRIPTION This simple object wraps a recipient of an L autoresponse. =head2 ATTRIBUTES =over 4 =item B Set/get the email address of this recipient. Expect the value to be something like C, ie: an email address without any decorations. =cut field 'email'; =item B Set/get the timestamp for this recipient. This is a UNIX timestamp (seconds since the epoch) representing when this person received an autoresponse. =cut field 'timestamp'; return 1; __END__ =back =head1 AUTHOR Adam Monsen, =head1 SEE ALSO L =head1 COPYRIGHT AND LICENSE 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. See L =cut