We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running tests under Elixir 1.17 with use Bamboo.Test we get the following warning printed in test log:
use Bamboo.Test
warning: using map.field notation (without parentheses) to invoke function Bamboo.TestAdapter.supports_attachments?() is deprecated, you must add parentheses instead: remote.function() (bamboo 2.3.0) lib/bamboo/mailer.ex:307: Bamboo.Mailer.validate_attachment_support/2 (bamboo 2.3.0) lib/bamboo/mailer.ex:289: Bamboo.Mailer.validate_and_normalize/2 (bamboo 2.3.0) lib/bamboo/mailer.ex:199: Bamboo.Mailer.deliver_now/4 (bamboo 2.3.0) lib/bamboo/mailer.ex:231: Bamboo.Mailer.deliver_now!/4
Fix required in lib/bamboo/mailer.ex:
lib/bamboo/mailer.ex
change supports_attachments?
supports_attachments?
to supports_attachments?()
supports_attachments?()
The text was updated successfully, but these errors were encountered:
@rob-vetspire PRs welcome!
Sorry, something went wrong.
Looks like this was fixed here: #664
No branches or pull requests
When running tests under Elixir 1.17 with
use Bamboo.Test
we get the following warning printed in test log:Fix required in
lib/bamboo/mailer.ex
:change
supports_attachments?
to
supports_attachments?()
The text was updated successfully, but these errors were encountered: