|
NAMEJabber::SimpleSend - Send a Jabber message simply.SYNOPSISuse Jabber::SimpleSend qw(send_jabber_message); send_jabber_message('youruserid@jabberdomain', 'yourpassword', 'target@jabber.domain', "Problems with Pie', "Pie taste funny."); or use Jabber::SimpleSend qw(send_jabber_message); send_jabber_message({ user => 'youruserid@jabber.domain', password => 'yourpassword', target => 'target@jabber.domain', subject => 'Pie Advice', message => "Must be wrong end.\nPie Good"}); DESCRIPTIONThis module is a wrapper around Net::Jabber that allows you to do one thing simply - send Jabber messages. It is useful for daemon processes, cron jobs or in any program that you want to be able to get your attention via Jabber.METHODSsend_jabber_mesage()You can call this method with either 5 scalar arguments or with a single reference to a hash. In the later case it takes a hash with the following keys,
KUDOSRyan Eatmon for doing the hard work and doing Net::Jabber, DJ Adams for answering my questions about Jabber in the past. Various CPAN authors for proving the usefulness of ::Simple modules.AUTHORGreg McCarroll <greg@mccarroll.org.uk>COPYRIGHTCopyright 2006 by Greg McCarroll <greg@mccarroll.org.uk>This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html
Visit the GSP FreeBSD Man Page Interface. |