Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created March 3, 2011 06:43
Show Gist options
  • Select an option

  • Save jugyo/852448 to your computer and use it in GitHub Desktop.

Select an option

Save jugyo/852448 to your computer and use it in GitHub Desktop.
# see also: http://d.hatena.ne.jp/takahashim/20101201/p1
class ActionMailer::Base
def process_with_fix_encoding(*args)
process_without_fix_encoding(*args)
message.transport_encoding = '8bit'
end
alias_method_chain :process, :fix_encoding
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment