| Email-ConstantContact documentation | view source | Contained in the Email-ConstantContact distribution. |
Email::ConstantContact::Activity - Internal class to interact with ConstantContact Activity Objects.
Version 0.05
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";
}
Adam Rich, <arich at cpan.org>
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.
You can find documentation for this module with the perldoc command.
perldoc Email::ConstantContact::Activity
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Email-ConstantContact
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.
| Email-ConstantContact documentation | view source | Contained in the Email-ConstantContact distribution. |