A Sendcloud adapter for the Bamboo.
If available in Hex, the package can be installed
by adding bamboo_sendcloud to your list of dependencies in mix.exs:
def deps do
[{:bamboo_sendcloud, "~> 0.2.0"}]
endIn config/config.exs, or config.prod.exs, etc.
config :my_app, MyApp.Mailer,
adapter: Bamboo.SendcloudAdapter,
api_user: "my_api_user",
api_key: "my_api_key"import Bamboo.Email
email =
new_email()
|> from({"Bender", "notify@send1.example.com"})
|> to(user)
|> subject("Welcome!")
|> text_body("Welcome to the app")
|> html_body("<strong>Welcome to the app</strong>")import Bamboo.Email
email =
new_email()
|> from({"Bender", "notify@send1.example.com"})
|> to(user)
|> SendcloudHelper.template("reset_password", %{"%link%" => [reset_password_link]})