Red Oxygen
US: 866 990 8398 / AU: 1800 770 758

Text Messaging API

Perl API

Use this API to send text messages from Perl.

Simple HTTP request
Encrypted communication over SSL
Long SMS (up to 765 characters)
Delivery status via function return code
Email replies

Example

sub SendSMS
{
	my $Browser = LWP::UserAgent->new;
	(my $AccountID, my $Email, my $Password, my $Recipient, my $Message) = @_;
	my $URL = 'http://www.redoxygen.net/sms.dll?Action=SendSMS';

	my $Response = $Browser->post($URL,
		['AccountID' => $AccountID,
		'Email' => $Email,
		'Password' => $Password,
		'Recipient' => $Recipient,
		'Message' => $Message]);

	print $Response->content;
}

Your Options

Trial Account Download

 
Facebook Twitter YouTube LinkedIn

Copyright Notice | Privacy Policy | Site Map

Copyright © 2012 Red Oxygen. All rights reserved.