NAME
Net::Rackspace::Notes - A way to interface with your Rackspace Email Notes.
VERSION
Version 0.0100
SYNOPSIS
This class implements the functionality needed to interact with the Rackspace Email Notes API. Most likely, the racknotes script will be what you want to use instead of this.
Example usage:
use Net::Rackspace::Notes qw(add_note delete_note notes);
Net::Rackspace::Notes::init(
email => 'bob@foo.com',
password => 'foo'
);
for my $note (@{notes()}) {
print "$note->{subject}: $note->{content}\n";
}
# Add a new note with the given subject and content
add_note('some subject', 'some important note');
# Delete notes()->[3]
delete_note(3);
FUNCTIONS
add_note
delete_note
notes
AUTHOR
Naveed Massjouni, <naveedm9 at gmail.com>
BUGS
Please report any bugs or feature requests to bug-net-rackspace-notes at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Rackspace-Notes. 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 Net::Rackspace::Notes
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-Rackspace-Notes
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2010 Naveed Massjouni.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.