Skip to content

Instantly share code, notes, and snippets.

@rmehner
Created October 14, 2010 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmehner/626845 to your computer and use it in GitHub Desktop.
Save rmehner/626845 to your computer and use it in GitHub Desktop.
module Mail
class Message
def body_html
if html_part.present?
html_part.body.to_s
elsif mime_type == 'text/html'
body.to_s
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment