Skip to content

Commit c17d200

Browse files
committed
mailer can be anonymous
closes rails#5970
1 parent 7d67880 commit c17d200

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

actionmailer/lib/action_mailer/base.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
require 'active_support/core_ext/object/blank'
44
require 'active_support/core_ext/string/inflections'
55
require 'active_support/core_ext/hash/except'
6+
require 'active_support/core_ext/module/anonymous'
67
require 'action_mailer/log_subscriber'
78

89
module ActionMailer #:nodoc:
@@ -401,7 +402,7 @@ def register_interceptor(interceptor)
401402
end
402403

403404
def mailer_name
404-
@mailer_name ||= name.underscore
405+
@mailer_name ||= anonymous? ? "anonymous" : name.underscore
405406
end
406407
attr_writer :mailer_name
407408
alias :controller_path :mailer_name

actionmailer/test/base_test.rb

+13
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,19 @@ def notify
610610
assert_equal Set.new(["notify"]), FooMailer.action_methods
611611
end
612612

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+
613626
protected
614627

615628
# Execute the block setting the given values and restoring old values after
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Anonymous mailer body

0 commit comments

Comments
 (0)