Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dead project? #222

Open
andercs opened this issue Jun 13, 2023 · 2 comments
Open

Dead project? #222

andercs opened this issue Jun 13, 2023 · 2 comments

Comments

@andercs
Copy link

andercs commented Jun 13, 2023

Is this project dead / in need of forking? #219 is creating issues for a project and the fix is here #216 but nothing has moved it along in about 6 months.

@creusefond
Copy link

creusefond commented Jun 29, 2023

Honestly, it seems that you're right. If you look at the main bamboo project, there is about 1 release every 2 years.
In our org we moved on to Swoosh, an active project used by Phoenix and that works almost identically.

I have a lot of respect for the devs that worked hard on Bamboo, but it seems that it's not the right choice for us anymore.

@ruslandoga
Copy link

ruslandoga commented Feb 27, 2024

👋

If anyone's willing to try out an alternative SMTP adapter, there's Bamboo.Mua now.

Mix.install [:bamboo_mua, :castore]

# this config is largely equivalent to the one at
# https://github.com/fewlinesco/bamboo_smtp#installation
config = [
  adapter: Bamboo.Mua,
  relay: "smtp.domain",
  port: 1025,
  auth: [username: "your.name", password: "pa55word"],
]

Application.put_env(:example, Mailer, config)

defmodule Mailer do
  use Bamboo.Mailer, otp_app: :example
end

email =
  Bamboo.Email.new_email(
    from: {"Mua", "[email protected]"},
    to: {"Receiver", "[email protected]"},
    subject: "how are you?",
    text_body: "I'm fine",
    html_body: "I'm <i>fine</i>"
  )

Mailer.deliver_now(email)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants