Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
quoted_printable(text, charset)
public
Convert the given text into quoted printable format, with an instruction
that the text be eventually interpreted in the given charset.
# File actionmailer/lib/action_mailer/quoting.rb, line 6
def quoted_printable(text, charset)
text = text.gsub( /[^a-z ]/i ) { quoted_printable_encode($&) }.
gsub( / /, "_" )
"=?#{charset}?Q?#{text}?="
end