hailgun: Mailgun REST api interface for Haskell.

[ library, mit, network ] [ Propose Tags ]

Mailgun is an online service that sends emails. It is a great point of integration for many SaaS services and this Haskell library cleanly interfaces with Mailgun so that you can send emails from your Haskell applications.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
newtime

Use version 1.5 of the time library or newer.

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.1.0, 0.2.0.0, 0.2.1.0, 0.3.0.0, 0.4.0.0, 0.4.0.1, 0.4.0.2, 0.4.0.3, 0.4.0.4, 0.4.0.5, 0.4.1.0, 0.4.1.1, 0.4.1.2, 0.4.1.3, 0.4.1.4, 0.4.1.5, 0.4.1.6, 0.4.1.7, 0.4.1.8, 0.4.2, 0.4.3, 0.5.0, 0.5.1
Dependencies aeson (>=0.8 && <1.3), base (>=4.6 && <5), bytestring (>=0.10.4 && <=0.11), email-validate (>=2.0 && <2.4), exceptions (>=0.8 && <0.9), filepath (>=1 && <2), http-client (>=0.4 && <0.6), http-client-tls (>=0.2 && <0.4), http-types (>=0.8), old-locale (>=1 && <2), tagsoup (>=0.13 && <0.15), text (>=1.2 && <1.3), time (>=1.2), transformers (>=0.3 && <0.6) [details]
License MIT
Copyright (c) 2014 Robert Massaioli
Author Robert Massaioli
Maintainer robertmassaioli@gmail.com
Category Network
Home page https://bitbucket.org/robertmassaioli/hailgun
Source repo head: git clone https://bitbucket.org/robertmassaioli/hailgun.git
Uploaded by cdepillabout at 2017-10-22T15:41:43Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 16621 total (64 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-10-22 [all 1 reports]

Readme for hailgun-0.4.1.6

[back to package description]

Hailgun

The hailgun library is a Haskell library that integrates with Mailgun. Mailgun is a service that allows controlled sending of emails. The intial focus of the API is on sending emails rather than recieving them.

This library was implimented based upon the information provided on the Mailgun API Reference. The goal of this library is match this API 1-1.

Building this library

This library just uses cabal to build itself. To do so for development then follow the following steps:

cabal sandbox init
cabal install --only-dependencies
cabal build

At that point in time you should have a working version of the library. If you wish to see the library in action then you could look at the hailgun-send library.