Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

courriel::part::multipart(3pm) [debian man page]

Courriel::Part::Multipart(3pm)				User Contributed Perl Documentation			    Courriel::Part::Multipart(3pm)

NAME
Courriel::Part::Multipart - A part which contains other parts VERSION
version 0.29 SYNOPSIS
my $headers = $part->headers(); my $ct = $part->content_type(); for my $subpart ( $part->parts ) { ... } DESCRIPTION
This class represents a multipart email part which contains other parts. API
This class provides the following methods: Courriel::Part::Multipart->new( ... ) This method creates a new part object. It accepts the following parameters: o parts An array reference of part objects (either Single or Multipart). This is required, but could be empty. o content_type A Courriel::Header::ContentType object. This defaults to one with a mime type of "multipart/mixed". o boundary The part boundary. If none is provided, a unique value will be generated. o preamble Content that appears before the first part boundary. This will be seen by email clients that don't understand multipart messages. o epilogue Content that appears after the final part boundary. The spec allows for this, but it's probably not very useful. o headers A Courriel::Headers object containing headers for this part. $part->parts() Returns an array (not a reference) of the parts this part contains. $part->part_count() Returns the number of parts this part contains. $part->boundary() Returns the part boundary. $part->mime_type() Returns the mime type for this part. $part->content_type() Returns the Courriel::Header::ContentType object for this part. $part->headers() Returns the Courriel::Headers object for this part. $part->is_inline(), $part->is_attachment() These methods always return false, but exist for the sake of providing a consistent API between Single and Multipart part objects. $part->is_multipart() Returns true. $part->preamble() The preamble as passed to the constructor. $part->epilogue() The epilogue as passed to the constructor. $part->container() Returns the Courriel or Courriel::Part::Multipart object to which this part belongs, if any. This is set when the part is added to another object. $part->stream_to( output => $output ) This method will send the stringified part to the specified output. The output can be a subroutine reference, a filehandle, or an object with a "print()" method. The output may be sent as a single string, as a list of strings, or via multiple calls to the output. See the "as_string()" method for documentation on the "charset" parameter. $part->as_string() Returns the part as a string, along with its headers. Lines will be terminated with " ". ROLES
This class does the "Courriel::Role::Part" and Courriel::Role::Streams roles. AUTHOR
Dave Rolsky <autarch@urth.org> COPYRIGHT AND LICENSE
This software is Copyright (c) 2012 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) perl v5.14.2 2012-03-07 Courriel::Part::Multipart(3pm)

Check Out this Related Man Page

Mojo::Content::MultiPart(3pm)				User Contributed Perl Documentation			     Mojo::Content::MultiPart(3pm)

NAME
Mojo::Content::MultiPart - HTTP 1.1 multipart content container SYNOPSIS
use Mojo::Content::MultiPart; my $multi = Mojo::Content::MultiPart->new; $multi->parse('Content-Type: multipart/mixed; boundary=---foobar'); my $single = $multi->parts->[4]; DESCRIPTION
Mojo::Content::MultiPart is a container for HTTP 1.1 multipart content as described in RFC 2616. EVENTS
Mojo::Content::Multipart inherits all events from Mojo::Content and can emit the following new ones. "part" $multi->on(part => sub { my ($multi, $single) = @_; ... }); Emitted when a new Mojo::Content::Single part starts. $multi->on(part => sub { my ($multi, $single) = @_; return unless $single->headers->content_disposition =~ /name="([^"]+)"/; say "Field: $1"; }); ATTRIBUTES
Mojo::Content::MultiPart inherits all attributes from Mojo::Content and implements the following new ones. "parts" my $parts = $multi->parts; $multi = $multi->parts([]); Content parts embedded in this multipart content, usually Mojo::Content::Single objects. METHODS
Mojo::Content::MultiPart inherits all methods from Mojo::Content and implements the following new ones. "new" my $multi = Mojo::Content::MultiPart->new; Construct a new Mojo::Content::MultiPart object and subscribe to "read" event with default content parser. "body_contains" my $success = $multi->body_contains('foobarbaz'); Check if content parts contain a specific string. "body_size" my $size = $multi->body_size; Content size in bytes. "build_boundary" my $boundary = $multi->build_boundary; Generate a suitable boundary for content. "clone" my $clone = $multi->clone; Clone content if possible, otherwise return "undef". "get_body_chunk" my $chunk = $multi->get_body_chunk(0); Get a chunk of content starting from a specfic position. "is_multipart" my $true = $multi->is_multipart; True. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Content::MultiPart(3pm)
Man Page