The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

=head1 NAME
Mail::Box-Cookbook - Examples how to use Mail::Box
=head1 DESCRIPTION
The C<Mail::Box> package is a suite of classes for accessing and managing
email folders in a folder-independent manner. This manual demonstrates
a few simple applications. Please contribute with examples and fixes.
It may also help to have a look at the programs included in the
C<scripts/> and the C<examples/> directories of the distribution.
=head2 The Manager
For more details about all the packages which are involved in the
C<Mail::Box> suite you have to read C<Mail::Box-Overview>. But you
do not need to know much if you want to use the C<Mail::Box> suite.
Please use the manager to open your folders. You will certainly
benevit from it. The manager takes care of detecting which folder
type you are using, and which folders are open. The latter avoids
the accidental re-opening of an already open folder.
The C<examples/open.pl> script contains mainly
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open($filename);
foreach my $message ($folder->messages) {
print $message->get('Subject') || '<no subject>', "\n";
}
$folder->close;
which shows all the most important functions. It will cause all
subjects of the messages in the indicated folder to be listed. So:
although the number of packages included in the C<Mail::Box> module
is huge, only little is needed for normal programs.
In stead of calling C<close> on the folder, you may also call
$mgr->closeAllFolders;
If you forget to close a folder, changes will not be written. This
may change in the future.
=head2 Multi part messages
In early days of Internet, multi-part messages where very rare.
However, in recent years, a large deal of all transmitted message have
attachments. This makes handling of the bodies of messages a bit harder:
when a message contains more than one part, which part is then the most
important to read?
To complicate life, multi-parts can be nested: each part may be a
multi-part by itself. This means that programs handling the message
content must be recursive or skip multi-parts.
The central part of the C<examples/multipart.pl> script reads:
foreach my $message ($folder->messages) {
show_type($message);
}
show_type($) {
my $msg = shift;
print $msg->get('Content-Type'), "\n";
if($msg->isMultipart) {
foreach my $part ($msg->parts) {
show_type($part);
}
}
}
Each part is a message by itself. It has a header and a body. A multipart
message has a special body: it contains a list of parts and optionally
also a preamble and an epilogue, which are respectively the lines before
and after the parts. These texts may be ignored, because they are only
descriptive on how the multi-part was created.
=head2 Filter
The target is to select a few messages from one folder, to move them
to an other. The C<examples/takelarge.pl> script demonstrates how
to achieve this. B<Be warned:> it will replace your input folder!
As abstract of the crucial part:
my $inbox = $mgr->open('inbox', access => 'rw');
my $large = $mgr->open('large', access => 'a', create => 1);
foreach my $message ($inbox->messages) {
next if $message->size < $size;
$mgr->moveMessage($large, $message);
}
$inbox->close;
$large->close;
The C<inbox> is opened for read and write: first read all messages, and
then write the smaller folder without moved messages back. The C<large>
folder is created if the file does not exist yet. In any case, messages
will be added to the end of the folder.
The manager is needed to move the message: to unregister the message from
the first folder, and reregister it in the second. You can move more
messages at once, if you like. When you move to a folder which is not
open, you even better do that: it will be faster:
my @move = grep {$_->size >= $size} $inbox->messages;
$mgr->moveMessage($large, @move);
In this example, the C<size> of the message determines whether the message
is moved or not. Of course, there are many other criteria you can use.
For instance, use C<timestamp> to find old messages:
use constant YEAR => 365 * 24 * 60 * 60;
my $now = time;
my @old = grep {$_->timestamp - $now > YEAR} $inbox->messages;
$mgr->moveMessage($oldbox, @old);
=head2 Create a reply
The complex message treatment is implemented in C<Mail::Message::Construct>
and automatically loaded when needed. It is sufficient to simply call
C<reply> on any message:
my $folder = ...;
my $message = $folder->message(8);
my $reply = $message->reply;
$folder->addMessage($reply);
$reply->print;
The method is quite complex, as demonstrated by C<examples/reply.pl>, in
which the construction of a reply-message is shown.
Three kinds of reply messages can be made: one which does not include
the original message at all (NO), then one which inlines the original
message quoted (INLINE), and as third possibility the original message as
attachment (ATTACH).
The C<include> parameter selects the kind of reply. When you reply
to binary or multi-part messages, INLINE will automatically promoted
to ATTACH. By default text will be stripped from the original senders
signature. Multi-part messages are stripped from attachments which
qualify as signature. In case a multi-part (after stripping) only
contains one part, and that INLINE is requested, it will be 'flattened':
the reply may be a single-part.
Have a look at the parameters which can be passed to reply in
L<Mail::Message::Construct>. For a single-part reply, the return
will be
prelude
quoted original
postlude
--
signature
A multipart body will be
part 1: prelude
[ see attachment ]
postlude
part 2: stripped original multipart
part 3: signature
=head2 Build a message
There are two ways to create a message which is not a reply. You may start
with creating a body, and transform that into a message using
C<Mail::Message::buildFromBody>, or by creating the whole message at once
with C<Mail::Message::build>. Both are described in
L<Mail::Message::Construct>.
Very important to remember from now on: information about the content of
the body (the C<Content-> lines in the header) is stored within the body
object, for as long as the body is not contained with a message object.
For instance, C<$message->decoded> returns the decoded body of the
C<$message>. It is a body object by itself, however outside a real
message. Then you may want to play around with it, by concatenating
some texts: again resulting in a new body. Each body contains the
right C<Content-> information. Then, finally, you create a message
specifying the body and extra header lines. At that moment you need
to specify the source and destination addresses (the C<From> and C<To> lines>).
At that moment, the body will automatically be encoded to be acceptable for
mail folders and transmission programs.
my $body = Mail::Message::Body->new
( mime_type => 'text/css'
, transfer_encoding => '8bit'
, data => \@lines
);
Above example creates a body, with explicitly stating what kind of data
is stored in it. The default mime type is C<text/plain>. The transfer
encoding defaults to C<none>. Each message will get encoded on the moment
it is added to a message. The default encoding dependends on the mime type.
To start with the first way to create a message. This solution provides
maximum control over the message creation. Quite some work is hidden for
you when executing the next line.
my $message = Mail::Message->buildFromBody
( $body
, From => 'me@example.com'
, To => 'you@anywhere.net'
, Cc => [ Mail::Address->parse($groupalias) ]
);
For header lines, you may specify a string, an address object
(C<Mail::Address>), or an array of such addresses. If you want to create
multi-part messages, you need to create a multi-part body yourself first.
The second way of constructing a message uses the C<build> method. A
demonstration can be found in C<examples/build.pl>. In only one
class method call the header and the (possible multi-parted) body
is created.
With the C<data> option, you can specify one scalar which
contains a whole body or an array of lines. Using the C<file> option,
a file-handle or filename specifies a body. The C<attach> option
refers to construed bodies and messages. Each option can be used as
often as needed. If more than one source of data is provided, a
multi-part message is produced.
my $message = Mail::Message->build
( From => 'me@example.com'
, To => 'you@anywhere.net'
, 'X-Mailer' => 'Automatic mailing system'
, data => \@lines
, file => 'logo.jpg'
, attach => $signature_body
);
=head1 SEE ALSO
The scripts in the C<examples/> directory, included in the distribution
and L<Mail::Box-Overview>.
=head1 AUTHOR
Mark Overmeer (F<mailbox@overmeer.net>).
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
=head1 VERSION
This code is beta, version $version.
Copyright (c) 2001 Mark Overmeer. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.