Extend instances of Mail with this to have it inlined automatically when delivered. You'll need to assign some roadie_options for it to actually do anything.
# File lib/roadie/rails/inline_on_delivery.rb, line 9 def deliver inline_styles super end
# File lib/roadie/rails/inline_on_delivery.rb, line 14 def deliver! inline_styles super end
# File lib/roadie/rails/inline_on_delivery.rb, line 21 def inline_styles if (options = roadie_options) MailInliner.new(self, options).execute end end