MIME::QuotedPrint
Quoted Printableエンコード/デコードを行なう。
使い方①:
use MIME::QuotedPrint;
$encoded = encode_qp('Aladdin:open sesame');
$decoded = decode_qp($encoded);
または
使い方②:
use MIME::QuoiedPrintable ();
$encoded = MIME::QuotedPrint::encode($decoded);
$decoded = MIME::QuotedPrint::decode($encoded);