Group
Extension

Matches 1

SMS-Send-Sendinblue ( J/JA/JAJM/SMS-Send-Sendinblue-0.02.tar.gz, JAJM, 2019; MetaCPAN )
SMS-Send-Sendinblue/lib/SMS/Send/Sendinblue.pm ( view source; MetaCPAN )
 warnings;

use parent 'SMS::Send::Driver';

use Carp;
use LWP::UserAgent;
use HTTP::Headers;
use JSON;

=head1 NAME

SMS::Send::Sendinblue - SMS::Send driver for Sendinblue

=head1 VERSION

Version 0
=> 'https://api.sendinblue.com/v3/transactionalSMS/sms');
    $request->content_type('application/json');
    $request->header(api_key => $self->{_apikey});

    my $body = {
        sender => $self->
   content => $params{text},
        type => 'transactional',
    };
    $request->content(encode_json($body));

    my $ua = LWP::UserAgent->new();
    my $response = $ua->request($request);

    if 

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