Get started in minutes - simple, quick and free. Upon registering you will receive 5 free test credits to send SMS's with.
#!/usr/bin/perl -w
use strict;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new(timeout => 30);
my $req = HTTP::Request->new(POST =>'http://usa.bulksms.com:5567/eapi/submission/send_sms/2/2.0');
$req->content_type('application/x-www-form-urlencoded');
$req->content('username=myusername&password=xxxxxx&msisdn=44123123123&message=Test+from+Perl');
my $res = $ua->request($req);
print $res->as_string;