Group
Extension

Matches 1

WWW-Postmark ( I/ID/IDOPEREL/WWW-Postmark-1.000001.tar.gz, IDOPEREL, 2017; MetaCPAN )
WWW-Postmark/lib/WWW/Postmark.pm ( view source; MetaCPAN )
ns.

use strict;
use warnings;

use Carp;
use Email::Valid;
use HTTP::Tiny;
use JSON::MaybeXS qw/encode_json decode_json/;
use File::Basename;
use File::MimeInfo;
use MIME::Base64 qw/encode_base64/;

s => {
				'Accept' => 'application/json',
				'Content-Type' => 'application/json',
				'X-Postmark-Server-Token' => $self->{token},
			},
			content => encode_json($msg),
		}
	);

	# analyze the res
ponse
	if ($res->{success}) {
		# woooooooooooooeeeeeeeeeeee
		return decode_json($res->{content});
	} else {
		if ($msg->{Attachments}) {
			print STDERR $res->{content};
		}
		croak "Failed sending 

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