# File lib/mailfactory.rb, line 396
  def quoted_printable_with_instruction(text, charset)
    text = [text].pack("M").gsub(/\n/, "\r\n").chomp.gsub(/ /, "_")
    "=?#{charset}?Q?#{text}?="
  end