Object
Decode the string from Quoted-Printable
# File lib/mail/encodings/quoted_printable.rb, line 6 def self.decode(str) str.unpack("M*").first end
# File lib/mail/encodings/quoted_printable.rb, line 10 def self.encode(str) str.gsub( /[^a-z ]/ ) { quoted_printable_encode($&) } end
[Validate]
Generated with the Darkfish Rdoc Generator 2.