Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/linjunpop/bamboo_sendcloud

🎍 A Sendcloud adapter for the Bamboo.
https://github.com/linjunpop/bamboo_sendcloud

bamboo elixir email sendcloud

Last synced: about 2 months ago
JSON representation

🎍 A Sendcloud adapter for the Bamboo.

Awesome Lists containing this project

README

        

# Bamboo.SendcloudAdapter

A [Sendcloud](https://www.sendcloud.net) adapter for the [Bamboo](https://github.com/thoughtbot/bamboo).

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `bamboo_sendcloud` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:bamboo_sendcloud, "~> 0.2.0"}]
end
```

In `config/config.exs`, or `config.prod.exs`, etc.

```elixir
config :my_app, MyApp.Mailer,
adapter: Bamboo.SendcloudAdapter,
api_user: "my_api_user",
api_key: "my_api_key"
```

## Usage

### Send standard email

```elixir
import Bamboo.Email

email =
new_email()
|> from({"Bender", "[email protected]"})
|> to(user)
|> subject("Welcome!")
|> text_body("Welcome to the app")
|> html_body("Welcome to the app")
```

### Send template email

```elixir
import Bamboo.Email

email =
new_email()
|> from({"Bender", "[email protected]"})
|> to(user)
|> SendcloudHelper.template("reset_password", %{"%link%" => [reset_password_link]})
```

## Docs

[https://hexdocs.pm/bamboo_sendcloud](https://hexdocs.pm/bamboo_sendcloud).