this driver
=head1 METHODS
=cut
use base 'SMS::Send::Driver';
use LWP::UserAgent();
use JSON qw(encode_json);
use Scalar::Util qw( looks_like_number );
=head2 new
# Instantiate a sender objec
rams{text};
# Add our authorisation credentials
# Send the request
my $body = encode_json({
user => $self->{'user'},
pass => $self->{'pass'},
source
my $response = $ua->post(
$self->{'base_url'},
'Content-Type' => 'application/json',
Content => $body
);
# Check the send succeded
if (!$response->is_su