class Mail::Encodings::QuotedPrintable

def self.decode(str)

Decode the string from Quoted-Printable
def self.decode(str)
  str.unpack("M*").first
end