Flowdock
method

transform!

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: InlinePreviewInterceptor
transform!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/action_mailer/inline_preview_interceptor.rb, line 28
    def transform! #:nodoc:
      return message if html_part.blank?

      html_part.body = html_part.decoded.gsub(PATTERN) do |match|
        if part = find_part(match[9..-2])
          %[src="#{data_url(part)}"]
        else
          match
        end
      end

      message
    end
Register or log in to add new notes.