
Mojo::Content::MultiPart - MultiPart Content

use Mojo::Content::MultiPart;
my $content = Mojo::Content::MultiPart->new;
$content->parse('Content-Type: multipart/mixed; boundary=---foobar');
my $part = $content->parts->[4];

Mojo::Content::MultiPart is a container for HTTP multipart content.

Mojo::Content::MultiPart inherits all attributes from Mojo::Content and implements the following new ones.
partsmy $parts = $content->parts;
body_lengthmy $body_length = $content->body_length;

Mojo::Content::MultiPart inherits all methods from Mojo::Content and implements the following new ones.
body_contains my $found = $content->body_contains('foobarbaz');
build_boundarymy $boundary = $content->build_boundary;
get_body_chunkmy $chunk = $content->get_body_chunk(0);
parse $content = $content->parse('Content-Type: multipart/mixed');