SYNOPSIS

 my Mail::Message $msg = ...;
 my $decoded = $msg->decoded;
 my $encoded = $msg->encode(transfer => 'quoted-printable');

See SYNOPSIS in Mail::Message::TransferEnc

DESCRIPTION

Encode and decode message bodies for quoted-printable transfer encoding. The Quoted-Printable encoding is intended to represent data that largely consists of bytes that correspond to printable characters in the ASCII character set. Non-printable characters (as defined by English Americans) are represented by a triplet consisting of the character "=" followed by two hexadecimal digits.

See DESCRIPTION in Mail::Message::TransferEnc