class CachingMailer
Public Instance Methods
fragment_cache()
click to toggle source
# File actionmailer/test/mailers/caching_mailer.rb, line 6 def fragment_cache mail(subject: "welcome", template_name: "fragment_cache") end
fragment_cache_in_partials()
click to toggle source
# File actionmailer/test/mailers/caching_mailer.rb, line 10 def fragment_cache_in_partials mail(subject: "welcome", template_name: "fragment_cache_in_partials") end
fragment_caching_options()
click to toggle source
# File actionmailer/test/mailers/caching_mailer.rb, line 18 def fragment_caching_options mail(subject: "welcome", template_name: "fragment_caching_options") end
multipart_cache()
click to toggle source
# File actionmailer/test/mailers/caching_mailer.rb, line 22 def multipart_cache mail(subject: "welcome", template_name: "multipart_cache") end
skip_fragment_cache_digesting()
click to toggle source
# File actionmailer/test/mailers/caching_mailer.rb, line 14 def skip_fragment_cache_digesting mail(subject: "welcome", template_name: "skip_fragment_cache_digesting") end