File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 3
3
require 'active_support/core_ext/object/blank'
4
4
require 'active_support/core_ext/string/inflections'
5
5
require 'active_support/core_ext/hash/except'
6
+ require 'active_support/core_ext/module/anonymous'
6
7
require 'action_mailer/log_subscriber'
7
8
8
9
module ActionMailer #:nodoc:
@@ -401,7 +402,7 @@ def register_interceptor(interceptor)
401
402
end
402
403
403
404
def mailer_name
404
- @mailer_name ||= name . underscore
405
+ @mailer_name ||= anonymous? ? "anonymous" : name . underscore
405
406
end
406
407
attr_writer :mailer_name
407
408
alias :controller_path :mailer_name
Original file line number Diff line number Diff line change @@ -610,6 +610,19 @@ def notify
610
610
assert_equal Set . new ( [ "notify" ] ) , FooMailer . action_methods
611
611
end
612
612
613
+ test "mailer can be anonymous" do
614
+ mailer = Class . new ( ActionMailer ::Base ) do
615
+ def welcome
616
+ mail
617
+ end
618
+ end
619
+
620
+ assert_equal "anonymous" , mailer . mailer_name
621
+
622
+ assert_equal "Welcome" , mailer . welcome . subject
623
+ assert_equal "Anonymous mailer body" , mailer . welcome . body . encoded . strip
624
+ end
625
+
613
626
protected
614
627
615
628
# Execute the block setting the given values and restoring old values after
Original file line number Diff line number Diff line change
1
+ Anonymous mailer body
You can’t perform that action at this time.
0 commit comments