The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Email::ConstantContact::Activity - Internal class to interact with ConstantContact Activity Objects.

VERSION

Version 0.05

SYNOPSIS

Activities are asynchronous requests used when the dataset is too large to be handled gracefully in realtime. For example, bulk uploads or downloads of contact data.

This module is not typically used directly, but internally by the main Email::ConstantContact object for processing requests.

    use Email::ConstantContact;

        my $apikey = 'ABCDEFG1234567';
    my $username = 'mycompany';
        my $password = 'topsecret';

    my $cc = new Email::ConstantContact($apikey, $username, $password);
    my @recent_activities = $cc->activities();

    foreach my $activity (@recent_activities) {
        print "Found recent activity, Type= ", $activity->{Type}, "\n";
        }

AUTHOR

Adam Rich, <arich at cpan.org>

BUGS

Please report any bugs or feature requests to bug-email-constantcontact at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Email-ConstantContact. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Email::ConstantContact::Activity

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2009-2011 Adam Rich, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.