SMS::Send::US::Ipipi - An SMS::Send driver for the ipipi.com website


SMS-Send-US-Ipipi documentation  | view source Contained in the SMS-Send-US-Ipipi distribution.

Index


NAME

Top

SMS::Send::US::Ipipi - An SMS::Send driver for the ipipi.com website

VERSION

Top

Version 0.03

SYNOPSIS

Top

  # Get the sender and login
  my $sender = SMS::Send->new('US::Ipipi',
  	_login    => 'username',
  	_password => 'password',
  	);

  my $sent = $sender->send_sms(
  	text => 'Messages have a limit of 160 chars',
  	to   => '212-555-1212',
  	);

  # Did it send?
  if ( $sent ) {
  	print "Sent test message\n";
  } else {
  	print "Test message failed\n";
  }

DESCRIPTION

Top

SMS::Send::US::Ipipi is a SMS::Send driver that delivers messages via the http://ipipi.com website.

Preparing to Use This Driver

You need to sign up for an account at http://ipipi.com to be able to use this driver.

Disclaimer

Using this driver may cost you money. YOU HAVE BEEN WARNED

METHODS

Top

new

  # Create a new sender using this driver
  my $sender = SMS::Send->new(
  	_login    => 'username',
  	_password => 'password',
  	);

The new constructor takes two parameters, which should be passed through from the SMS::Send constructor.

The params are driver-specific for now, until SMS::Send adds a standard set of params for specifying the login and password.

_login

The _login param should be your ipipi.com login.

_password

The _password param should be your ipipi.com password.

Returns a new SMS::Send::US::Ipipi object, or dies on error.

send_sms

  This method is actually called by SMS::Send when you call send_sms on it.

  my $sent = $sender->send_sms(
  	text => 'Messages have a limit of 160 chars',
  	to   => '212-555-1212',
  	);

AUTHOR

Top

Andrew Moore, <andrew.moore at liblime.com>

BUGS

Top

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

SUPPORT

Top

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

    perldoc SMS::Send::US::Ipipi

You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=SMS-Send-US-Ipipi

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/SMS-Send-US-Ipipi

* CPAN Ratings

http://cpanratings.perl.org/d/SMS-Send-US-Ipipi

* Search CPAN

http://search.cpan.org/dist/SMS-Send-US-Ipipi

ACKNOWLEDGEMENTS

Top

Thanks to Adam Kennedy <adamk@cpan.org>, http://ali.as/ for writing SMS::Send and for SMS::Send::AU::MyVodafone which I copied for this module.

COPYRIGHT & LICENSE

Top


SMS-Send-US-Ipipi documentation  | view source Contained in the SMS-Send-US-Ipipi distribution.