Description
Swift_Encoder_QpEncoder
|
--Swift_Mime_ContentEncoder_QpContentEncoder
Located in File: /vendors/swiftMailer/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php
Handles Quoted Printable (QP) Transfer Encoding in Swift Mailer.
Method Detail
Summary:
Method encodeByteStream (line 48)
void encodeByteStream(
Swift_OutputByteStream
$os, Swift_InputByteStream
$is, [int
$firstLineOffset = 0], [int
$maxLineLength = 0])
Implementation of:
- Swift_Mime_ContentEncoder::encodeByteStream()
- Encode $in to $out.
Encode stream $in to stream $out.
QP encoded strings have a maximum line length of 76 characters. If the first line needs to be shorter, indicate the difference with $firstLineOffset.
Parameters
Info
Method getName (line 112)
string getName(
)
Implementation of:
- Swift_Mime_ContentEncoder::getName()
- Get the MIME name of this content encoding scheme.
Get the name of this encoding scheme.
Returns the string 'quoted-printable'.
Info