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
Some lines of code, saying more then 1000 words.
module Cells::Mailer::Config include Uber::Configuration configuration_name :mailer configuration_instance_name :mailer_config configuration_options :from, :to, :subject end module Cells::Mailer include Cells::Mailer::Config end class ApplicationMailerCell include Cells::Mailer mailer do from "[email protected]" end end class FooMailerCell < ApplicationMailerCell mailer do subject "Foo" # `from` will be inherit from ApplicationMailerCell end def deliver mailer_config # => {from: "[email protected]", subject: "Foo"} mailer_config.from # => "[email protected]" end end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some lines of code, saying more then 1000 words.
The text was updated successfully, but these errors were encountered: