/ Published in: Perl
send SMS to any mobile phone number (or a list) worldwide.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
use LWP::UserAgent; use HTTP::Request::Common; my $ua = LWP::UserAgent->new(); my $res = $ua->request ( POST 'http://www.smsmatrix.com/matrix', Content_Type => 'application/x-www-form-urlencoded', 'password' => 'pass7782', 'callerid' => '12501231233', # optional (for 2-way sms) 'phone' => '12506063167', 'txt' => 'this is a test' ] );
URL: http://www.smsmatrix.com/?sms-gateway