Group
Extension

Matches 1

SMS-Send-UK-123txt ( A/AN/ANDREWISH/SMS-Send-UK-123txt-0.0.3.tar.gz, ANDREWISH, 2022; MetaCPAN )
SMS-Send-UK-123txt/lib/SMS/Send/UK/123txt.pm ( view source; MetaCPAN )
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

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.