WebService::Mandrill - WebService::Mandrill - an interface to mandrillapp.com's RESTful Web API using Web::API
version 0.8
Please refer to the API documentation at http://mandrillapp.com/api/docs/index.html
use WebService::Mandrill;
my $mandrill = WebService::Mandrill->new(
debug => 1,
api_key => '12345678-9abc-def0-1234-56789abcdef0',
);
my $response = $mandrill->send(
subject => "h4x0r",
from_email => "mail@example.com",
text => "what zee fug",
track_opens => 1,
track_clicks => 1,
to => [
{ email => 'mail@example.com' }
],
);
basic configuration for the client API happens usually in the BUILD method when using Web::API
Please report any bugs or feature requests on GitHub's issue tracker https://github.com/nupfel/WebService-Mandrill/issues.
You can find documentation for this module with the perldoc command.
perldoc WebService::Mandrill
You can also look for information at:
GitHub repository
MetaCPAN
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Tobias Kirschstein <lev@cpan.org>
This software is Copyright (c) 2013 by Tobias Kirschstein.
This is free software, licensed under:
The (three-clause) BSD License