| CARVIEW |
hailgun: Mailgun REST api interface for Haskell.
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
| Name | Description | Default |
|---|---|---|
| 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
- hailgun-0.5.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
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 |
|---|---|
| Change log | Changelog.md |
| Dependencies | aeson (>=0.8), attoparsec (>=0.13 && <0.14), base (>=4.6 && <5), bytestring (>=0.10.4 && <=0.11), email-validate (>=2.0 && <2.4), exceptions (>=0.8), filepath (>=1 && <2), http-client (>=0.4 && <0.7), 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-2018 Robert Massaioli |
| Author | Robert Massaioli <robertmassaioli@gmail.com> |
| Maintainer | Konstantine Rybnikov <k-bx@k-bx.com> |
| Uploaded | by k_bx at 2020-02-27T11:21:09Z |
| Category | Network |
| Home page | https://bitbucket.org/echo_rm/hailgun |
| Source repo | head: git clone https://bitbucket.org/robertmassaioli/hailgun.git |
| Distributions | NixOS:0.5.1 |
| Reverse Dependencies | 2 direct, 0 indirect [details] |
| Downloads | 17582 total (83 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2020-02-27 [all 1 reports] |
Readme for hailgun-0.5.1
[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.