ex_postmark

Build Status

This is a library inspired by swoosh for Postmark service to send template emails.

Installation

If available in Hex, the package can be installed as:

  1. Add ex_postmark to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:ex_postmark, "~> 0.x.x"}]
end
```
  1. Ensure ex_postmark is started before your application:
```elixir
def application do
  [applications: [:ex_postmark]]
end
```

Usage

Tests

Contribution

  1. Fork the repository and then clone it locally:
  git clone https://github.com/KamilLelonek/ex_postmark
  1. Create a topic branch for your changes:
  git checkout -b fix-mailchimp-pricing-bug
  1. Commit a failing test for the bug:
  git commit -am "Adds a failing test that demonstrates the bug"
  1. Commit a fix that makes the test pass:
  git commit -am "Adds a fix for the bug"
  1. Run the tests:
  mix test
  1. If everything looks good, push to your fork:
  git push origin fix-mailchimp-pricing-bug
  1. Submit a pull request.