README.md

# Apostle

Elixir client for [Apostle](http://apostle.io).

## Installation

First, add `Apostle` to your `mix.exs` dependencies:

```elixir
def deps do
  [{:apostle, "~> 0.0.1"}]
end
```

and run `$ mix deps.get`. Now add the `:apostle` application as your application dependency:

```elixir
def application do
  [applications: [:apostle]]
end
```

## Usage

```iex
iex> Apostle.start
iex> Apostle.deliver email: "test@example.com", template_id: "welcome", name: "Mr Example"
```

## License

Copyright © 2015 Resistor Ltd, <james@resistor.io>

This work is free. You can redistribute it and/or modify it under the terms of the MIT License. See the LICENSE file for more details