ex_postmark
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:
-
Add
ex_postmarkto your list of dependencies inmix.exs:
```elixir
def deps do
[{:ex_postmark, "~> 0.x.x"}]
end
```-
Ensure
ex_postmarkis started before your application:
```elixir
def application do
[applications: [:ex_postmark]]
end
```Usage
Tests
Contribution
- Fork the repository and then clone it locally:
git clone https://github.com/KamilLelonek/ex_postmark- Create a topic branch for your changes:
git checkout -b fix-mailchimp-pricing-bug- Commit a failing test for the bug:
git commit -am "Adds a failing test that demonstrates the bug"- Commit a fix that makes the test pass:
git commit -am "Adds a fix for the bug"- Run the tests:
mix test- If everything looks good, push to your fork:
git push origin fix-mailchimp-pricing-bug