NAME
Mail::Message::TransferEnc::QuotedPrint - handle quoted-printable message bodies
CLASS INHERITANCE
Mail::Message::TransferEnc::QuotedPrint is a Mail::Message::TransferEnc is a Mail::Reporter
SYNOPSIS
my Mail::Message $msg = ...;
my $decoded = $msg->decoded;
my $encoded = $msg->encode(transfer => 'quoted-printable');
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.
METHODS
Initiation
The Encoder
- addTransferEncoder TYPE, CLASS
-
See Mail::Message::TransferEnc::addTransferEncoder()
- create TYPE, OPTIONS
-
See Mail::Message::TransferEnc::create()
- name
-
See Mail::Message::TransferEnc::name()
Encoding
- check BODY, OPTIONS
-
See Mail::Message::TransferEnc::check()
- decode BODY [, OPTIONS]
-
See Mail::Message::TransferEnc::decode()
- encode BODY, OPTIONS
-
See Mail::Message::TransferEnc::encode()
Logging and Tracing
- defaultTrace [LEVEL, [LEVEL]
-
See Mail::Reporter::defaultTrace()
- errors
-
See Mail::Reporter::errors()
- log [LEVEL [,STRINGS]]
-
See Mail::Reporter::log()
- report [LEVEL]
-
See Mail::Reporter::report()
- reportAll [LEVEL]
-
See Mail::Reporter::reportAll()
- trace [LEVEL]
-
See Mail::Reporter::trace()
- warnings
-
See Mail::Reporter::warnings()
Other Methods
- AUTOLOAD
-
See Mail::Reporter::AUTOLOAD()
- DESTROY
-
See Mail::Reporter::DESTROY()
- inGlobalDestruction
-
See Mail::Reporter::inGlobalDestruction()
- logPriority LEVEL
-
See Mail::Reporter::logPriority()
- logSettings
-
See Mail::Reporter::logSettings()
- notImplemented
-
See Mail::Reporter::notImplemented()
SEE ALSO
A good start to read is Mail::Box-Overview. More documentation and a mailinglist are available from the project's website at http://perl.overmeer.net/mailbox/.
AUTHOR
Mark Overmeer (mark@overmeer.net) with the help of many.
VERSION
This code is beta, version 2.023.
Copyright (c) 2001-2002 Mark Overmeer. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.