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

NAME

WWW::Anonymouse - interface to Anonymouse.org Email and News posting

SYNOPSIS

    use WWW::Anonymouse;

    my $an = WWW::Anonymouse::Email->new;
    $an->send( to=>'bubba@example.com', subject=>'test', text=>'test' );

    my $an = WWW::Anonymouse::News->new;
    $an->send( to=>'alt.test', subject=>'test', text=>'test' );

DESCRIPTION

The WWW::Anonymouse module provides an interface to the Anonymouse.org anonymous email and news posting.

METHODS

$an = WWW::Anonymouse::Email->new
$an = WWW::Anonymouse::Email->new( ua => $ua )
$an = WWW::Anonymouse::News->new
$an = WWW::Anonymouse::News->new( ua => $ua )

Creates a new Email or News object. The constructor accepts an optional LWP::UserAgent derived object.

$ret = $an->send( to => $to, subject => $subject, text => $text )

Sends a message to the given email address(es) or newsgroup(s). Returns true on success.

$error = $an->error

Returns the error string, if present.

NOTES

Anonymouse has a flood protection limit of about 1 message per minute. If you need to post more frequently, you can use http proxies or cgi proxies- but don't abuse the service.

SEE ALSO

http://anonymouse.org/anonemail.html

http://anonymouse.org/anonnews.html

REQUESTS AND BUGS

Please report any bugs or feature requests to http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Anonymouse. 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 WWW::Anonymouse

You can also look for information at:

COPYRIGHT AND LICENSE

Copyright (C) 2007 gray <gray at cpan.org>, all rights reserved.

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

AUTHOR

gray, <gray at cpan.org>