aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@github.com>2019-03-01 14:06:41 -0800
committerGitHub <noreply@github.com>2019-03-01 14:06:41 -0800
commited6364f7b6579a890c5cedc3c9e5b2f8af586e9e (patch)
treed30267bf589b995579904244316829156d14b5f6 /actionmailer
parent2939c2c0e011347d06ba3cc9dfe4ebe3b08f6799 (diff)
parentbcd42ae974eb04cb5def7a01d194e70b87bc4152 (diff)
downloadrails-ed6364f7b6579a890c5cedc3c9e5b2f8af586e9e.tar.gz
rails-ed6364f7b6579a890c5cedc3c9e5b2f8af586e9e.tar.bz2
rails-ed6364f7b6579a890c5cedc3c9e5b2f8af586e9e.zip
Merge pull request #35429 from jhawthorn/template_format_nil
Allow nil format on templates
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/base.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 52360d40fe..8595b1e063 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -973,10 +973,11 @@ module ActionMailer
templates_name = headers[:template_name] || action_name
each_template(Array(templates_path), templates_name).map do |template|
- self.formats = [template.format]
+ format = template.format || self.formats.first
+ self.formats = [format]
{
body: render(template: template),
- content_type: template.type.to_s
+ content_type: Mime[format].to_s
}
end
end