• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/CPANInternal-159.1/Mail-Sender-0.8.22/

Lines Matching refs:encoding

89 #data encoding

548 $Mail::Sender::Error="Unknown encoding '$_[0]'";
555 'Unknown encoding',
723 =item encoding
725 C<>=> encoding of a single part message or the body of a multipart message.
728 very long lines you should use 'encoding => "Quoted-printable"' in the
731 Keep in mind that if you use some encoding you should either use SendEnc()
792 You do not need to worry about encoding the ORCPT or ENVID parameters.
1244 delete $self->{'encoding'};
1374 if (defined $self->{'encoding'} or defined $self->{'ctype'}) {
1380 if (defined $self->{'encoding'}) {
1381 $headers .= "\r\nContent-Transfer-Encoding: $self->{'encoding'}";
1382 if ($self->{'encoding'} =~ /Base64/i) {
1385 } elsif ($self->{'encoding'} =~ /Quoted[_\-]print/i) {
1387 } elsif ($self->{'encoding'} =~ /^[78]bit$/i) {
1390 return $self->Error(UNKNOWNENCODING($self->{'encoding'}));
1493 delete $self->{'encoding'};
1774 Just keep in mind that parameters like ctype, charset and encoding
1787 my ($file, $desc, $haddesc,$ctype,$charset,$encoding);
1803 $encoding=delete $hash->{'encoding'};
1839 my $encoding = $encoding || ($ctype =~ m#^text/#i ? 'Quoted-printable' : 'Base64');
1843 $self->Part({encoding => $encoding,
1853 binmode $FH unless $ctype =~ m#^text/#i and $encoding =~ /Quoted[_\-]print|Base64/i;
1940 Encodes the text using the selected encoding (none/Base64/Quoted-printable)
1988 Encodes the text using the selected encoding (none/Base64/Quoted-printable).
1991 necessary for correct Base64 encoding, and /Send(Ex)?/ is not aware of that!
2057 Part( I<description>, I<ctype>, I<encoding>, I<disposition> [, I<content_id> [, I<msg>]]);
2058 Part( {[description => "desc"], [ctype => "content/type"], [encoding => "..."],
2089 =item encoding
2091 the encoding used for this part of message. Eg. Base64, Uuencode, 7BIT
2129 my ($description, $ctype, $encoding, $disposition, $content_id, $msg, $charset);
2134 $encoding=$hash->{'encoding'};
2140 ($description, $ctype, $encoding, $disposition, $content_id, $msg) = @_;
2145 $encoding="7BIT" unless defined $encoding;
2146 $self->{'encoding'} = $encoding;
2158 if ($encoding =~ /Base64/i) {
2161 } elsif ($encoding =~ /Quoted[_\-]print/i) {
2176 print $s "Content-Transfer-Encoding: $encoding\r\n";
2192 Body([charset [, encoding [, content-type]]]);
2193 Body({charset => '...', encoding => '...', ctype => '...', msg => '...');
2196 charset and the encoding. Default is "US-ASCII","7BIT",'text/plain'.
2224 my $encoding = shift || $hash->{'encoding'} || $self->{'encoding'} || '7BIT';
2230 $self->{'encoding'} = $encoding;
2234 $encoding, 'inline', undef, $hash->{'msg'});
2244 Attach( I<description>, I<ctype>, I<encoding>, I<disposition>, I<file>);
2245 Attach( { [description => "desc"] , [ctype => "ctype"], [encoding => "encoding"],
2263 =item encoding
2265 the encoding used for this part of message. Eg. Base64, Uuencode, 7BIT
2312 my ($description, $ctype, $encoding, $disposition, $file, $content_id, @files);
2317 $encoding=$hash->{'encoding'};
2322 ($description, $ctype, $encoding, $disposition, $file, $content_id) = @_;
2338 $encoding='Base64' unless $encoding;
2349 if ($encoding =~ /Base64/i) {
2351 } elsif ($encoding =~ /Quoted[_\-]print/i) {
2360 $self->{'encoding'} = $encoding;
2375 print $s ("Content-Transfer-Encoding: $encoding\r\n");
2399 binmode $FH unless $fctype =~ m#^text/#i and $encoding =~ /Quoted[_\-]print|Base64/i;
2402 $mychunksize = $chunksize64 if lc($encoding) eq "base64";
2451 print $s "=" if !$self->{'bypass_outlook_bug'} and $self->{'encoding'} =~ /Quoted[_\-]print/i; # make sure we do not add a newline
2468 $self->{'encoding'} = '';
2520 delete $self->{'encoding'};
2819 without any modifications, encoding, escaping, ...
3168 encoding => 'Base64',
3189 encoding => 'Base64',
3210 encoding => 'Base64',
3234 encoding => 'Base64',
3302 encoding => "7bit"
3317 encoding => "quoted-printable"
3334 encoding => '7bit',
3341 encoding => 'base64',
3370 encoding => '7bit',
3377 encoding => 'base64',
3442 encoding => 'base64',
3478 encoding => 'Base64',
3513 encoding => 'quoted-printable',