 |
Version: 2.8.0
Released: 3/5/2007
The Perl SMS SDK provides easy, high-level control of the Simplewire wireless text-messaging platform. The Perl SMS SDK was designed be to be as developer-friendly as possible by hiding the intricacies of the XML format required to communicate with the Simplewire WMP (Wireless Message Protocol) servers. The Perl SMS SDK makes it possible to send an SMS message off with as little as two lines of code.
The Simplewire SMS Perl Client is written in pure perl and requires Perl 5.002 or above on Unix, Linux, or Windows systems to run. There are a number of ways for you to be able to retrieve this client. You can either download the necessary modules here or from CPAN or Active State. Net::SMS.pm is registered with CPAN and is also supported by their install standards.
|
 |
Download
| Product |
Version |
Released |
Size |
 |
All Platforms |
2.8.0 |
3/5/2007 |
281 KB |
|
 |
Examples
Quick Start
#!/usr/bin/perl
use Net::SMS;
# Create SMS Object
my $sms = Net::SMS->new();
# Set Message Properties
$sms->msgPin("+11005101234");
$sms->msgFrom("Demo");
$sms->msgCallback("+11005551212");
$sms->msgText("Hello World From Simplewire!");
# Send Message
$sms->msgSend();
|
|
|
|