logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MIME::Field::ConTraEnc - a "Content-transfer-encoding" field

Author

Eryq (eryq@zeegee.com), ZeeGee Software Inc (http://www.zeegee.com). Dianne Skoll (dianne@skoll.ca) perl v5.38.2 2024-04-27 MIME::Field::ConTraEnc(3pm)

Description

A subclass of Mail::Field. Don'tusethisclassdirectly...itsnamemaychangeinthefuture! Instead, ask Mail::Field for new instances based on the field name!

Name

MIME::Field::ConTraEnc - a "Content-transfer-encoding" field

See Also

MIME::Field::ParamVal, Mail::Field

Synopsis

use Mail::Field; use MIME::Head; # Create an instance from some text: $field = Mail::Field->new('Content-transfer-encoding', '7bit'); # Get the encoding. # Possible values: 'binary', '7bit', '8bit', 'quoted-printable', # 'base64' and '' (unspecified). Note that there can't be a # single default for this, since it depends on the content type! $encoding = $field->encoding;

See Also