MIME:: |
MIME::Lite - low-calorie MIME generator
WARNING: This is Alpha code. I have not yet fully tested it, and I can't guarantee that the interface won't change in the next few releases in a non-backwards-compatible manner. It is being provided to the community for suggestions and in the hopes that it will be useful.
use MIME::Lite;
Create a single-part message:
# Create a new single-part message, to send a GIF file: $msg = new MIME::Lite From =>'me@myhost.com', To =>'you@yourhost.com', Cc =>'some@other.com, some@more.com', Subject =>'Helloooooo, nurse!', Type =>'image/gif', Encoding =>'base64', Path =>'hellonurse.gif';
Create a multipart message (i.e., one with attachments):
# Create a new multipart message: $msg = new MIME::Lite From =>'me@myhost.com', To =>'you@yourhost.com', Cc =>'some@other.com, some@more.com', Subject =>'A message with 2 parts...', Type =>'multipart/mixed';
# Add parts (each "attach" has same arguments as "new"): attach $msg Type =>'TEXT', Data =>"Here's the GIF file you wanted"; attach $msg Type =>'image/gif', Path =>'aaa000123.gif', Filename =>'logo.gif';
Output a message:
# As a string... $str = $msg->as_string;
# To a filehandle (say, a "sendmail" stream)... $msg->print(\*SENDMAIL);
In the never-ending quest for great taste with fewer calories, we proudly present: MIME::Lite.
MIME::Lite is intended as a simple, standalone module for generating (not parsing!) MIME messages... specifically, it allows you to output a simple, decent single- or multi-part message with text or binary attachments. It does not require that you have the Mail:: or MIME:: modules installed.
You can specify each message part as either the literal data itself (in a scalar or array), or as a string which can be given to open() to get a readable filehandle (e.g., "<filename" or "somecommand|").
You don't need to worry about encoding your message data: this module will do that for you. It handles the 5 standard MIME encodings.
If you need more sophisticated behavior, please get the MIME-tools package instead. I will be more likely to add stuff to that toolkit over this one.
Create a multipart message exactly as above, but using the "attach to singlepart" hack:
# Create a new multipart message: $msg = new MIME::Lite From =>'me@myhost.com', To =>'you@yourhost.com', Cc =>'some@other.com, some@more.com', Subject =>'A message with 2 parts...', Type =>'TEXT', Data =>"Here's the GIF file you wanted";
# Attach a part: attach $msg Type =>'image/gif', Path =>'aaa000123.gif', Filename =>'logo.gif';
Output a message to a filehandle:
# Write it to a filehandle: $msg->print(\*STDOUT);
# Write just the header: $msg->print_header(\*STDOUT);
# Write just the encoded body: $msg->print_body(\*STDOUT);
Get a message as a string:
# Get entire message as a string: $str = $msg->as_string;
# Get just the header: $str = $msg->header_as_string;
# Get just the encoded body: $str = $msg->body_as_string;
# Send a message (Unix systems only!):
# Send it! $msg->send;
If any arguments are given, they are passed into build()
; otherwise,
just the empty object is created.
You can attach a MIME::Lite OBJECT, or have it create one by specifying
a PARAMHASH that will be automatically given to new()
.
One of the possibly-quite-useful hacks thrown into this is the "attach-to-singlepart" hack: if you attempt to attach a part (let's call it "part 1") to a message that isn't a multipart message (the "self" object in this case), the following happens:
One of the nice side-effects is that you can create a text message and then add zero or more attachments to it, much in the same way that a user agent like Netscape allows you to do.
Bcc Encrypted Received Sender Cc From References Subject Comments Keywords Reply-To To Content-* Message-ID Resent-* X-* Date MIME-Version Return-Path Organization
To give experienced users some veto power, these fields will be set
after the ones I set... so be careful: don't set any MIME fields
(like Content-type
) unless you know what you're doing!
To specify a fieldname that's not in the above list, even one that's
identical to an option below, just give it with a trailing ":"
,
like "My-field:"
. When in doubt, that always signals a mail
field (and it sort of looks like one too).
"inline"
or "attachment"
.
The default is "inline"
.
"binary"
, which means "no encoding": this is generally
not suitable for sending anything but ASCII text files with short
lines, so consider using one of the following values instead:
Use encoding: If your message contains: ------------------------------------------------------------ 7bit Only 7-bit text, all lines <1000 characters 8bit 8-bit text, all lines <1000 characters quoted-printable 8-bit text or long lines (MUCH more reliable than "8bit") base64 Largely binary data: a GIF, a tar file, etc.
Be sure to pick an appropriate encoding. In the case of "7bit"/"8bit", long lines are automatically chopped to legal length; in the case of "7bit", all 8-bit characters are automatically removed. This may not be what you want, so pick your encoding well! There's a "A MIME PRIMER" in this document with more info.
"TEXT" means "text/plain" "BINARY" means "application/octet-stream"
The default is "TEXT"
.
A picture being worth 1000 words (which is of course 2000 bytes, so it's probably more of an "icon" than a "picture", but I digress...), here are some examples:
$msg = build MIME::Lite From => 'yelling@inter.com', To => 'stocking@fish.net', Subject => "Hi there!", Type => 'TEXT', Encoding => '7bit', Data => "Just a quick note to say hi!";
$msg = build MIME::Lite From => 'dorothy@emerald-city.oz', To => 'gesundheit@edu.edu.edu', Subject => "A gif for U" Type => 'image/gif', Path => "/home/httpd/logo.gif";
$msg = build MIME::Lite From => 'laughing@all.of.us', To => 'scarlett@fiddle.dee.de', Subject => "A gzipp'ed tar file", Type => 'x-gzip', Path => "gzip < /usr/inc/somefile.tar |", ReadNow => 1, Filename => "somefile.tgz";
To show you what's really going on, that last example could also have been written:
$msg = new MIME::Lite;
$msg->build(Type => 'x-gzip', Path => "gzip < /usr/inc/somefile.tar |", ReadNow => 1, Filename => "somefile.tgz");
$msg->add(From => "laughing@all.of.us"); $msg->add(To => "scarlett@fiddle.dee.de"); $msg->add(Subject => "A gzipp'ed tar file");
Beware: any MIME fields you "add" will override any MIME attributes I have when it comes time to output those fields. Normally, you will use this method to add non-MIME fields:
$msg->add("Subject" => "Hi there!");
Giving VALUE an arrayref will cause all those values to be added:
$msg->add("Received" => ["here", "there", "everywhere"]
Note: add() is probably going to be more efficient than replace()
,
so you're better off using it for most applications.
Note: the name comes from Mail::Header.
$msg->attr("content-type" => "text/html"); $msg->attr("content-type.charset" => "US-ASCII"); $msg->attr("content-type.name" => "homepage.html");
This would cause the final output to look something like this:
Content-type: text/html; charset=US-ASCII; name="homepage.html"
Note that the special empty sub-field tag indicates the anonymous first sub-field.
Giving VALUE as undefined will cause the contents of the named subfield to be deleted.
Supplying no VALUE argument just returns the attribute's value:
$type = $msg->attr("content-type"); # returns "text/html" $name = $msg->attr("content-type.name"); # returns "homepage.html"
$msg->delete("Subject");
Note: the name comes from Mail::Header.
[TAG, VALUE]
pairs.
Any fields that the user has explicitly set will override the corresponding MIME fields that we would generate. So: don't say:
$msg->set("Content-type" => "text/html; charset=US-ASCII");
unless you mean it!
Note: I called this "fields" because the header() method of Mail::Header returns something different, but similar enough to be confusing.
With no argument, returns the filename as dictated by the content-disposition.
$msg->get_length;
Returns the length, or undefined if not set.
Note: the content length can be difficult to compute, since it involves assembling the entire encoded body and taking the length of it (which, in the case of multipart messages, means freezing all the sub-parts, etc.).
This method only sets the content length to a defined value if the
message is a singlepart with "binary"
encoding, and the body is
available either in-core or as a simple file. Otherwise, the content
length is set to the undefined value.
Since content-length is not a standard MIME field anyway (that's right, kids: it's not in the MIME RFCs, it's an HTTP thing), this seems pretty fair.
Beware: any MIME fields you "replace" will override any MIME attributes I have when it comes time to output those fields. Normally, you will use this method to set non-MIME fields:
$msg->replace("Subject" => "Hi there!");
Giving VALUE as undefined will simply cause the contents of the named field to be deleted. Giving VALUE as an arrayref will cause all the values in the array to be added.
Note: the name comes from Mail::Header.
build()
) should be read using
binmode() (for example, when read_now()
is invoked).
The default behavior is that any content type other than
text/*
or message/*
is binmode'd; this should in general work fine.
With a defined argument, this method sets an explicit "override" value. An undefined argument unsets the override. The new current value is returned.
Warning: setting the data causes the "content-length" attribute to be recomputed (possibly to nothing).
Warning: setting the path recomputes any existing "content-length" field, and re-sets the "filename" (to the last element of the path if it looks like a simple path, and to nothing if not).
path()
first; otherwise, the current path
(such as given during a build()
) will be used.
Note that the in-core data will always be used if available.
Be aware that everything is slurped into a giant scalar: you may not want
to use this if sending tar files! The benefit of not reading in the data
is that very large files can be handled by this module if left on disk
until the message is output via print()
or print_body()
.
build()
: the literal signature data.
Can be either a scalar or a ref to an array of scalars.
build()
: the path to the file.
If no arguments are given, the default is:
Path => "$ENV{HOME}/.signature"
The content-length is recomputed.
All OUTHANDLE has to be is a filehandle (possibly a glob ref), or any object that responds to a print() message.
All OUTHANDLE has to be is a filehandle (possibly a glob ref), or any object that responds to a print() message.
Fatal exception raised if unable to open any of the input files, or if a part contains no data, or if an unsupported encoding is encountered.
All OUTHANDLE has to be is a filehandle (possibly a glob ref), or any object that responds to a print() message.
Note: actually prepares the body by "printing" to a scalar.
Proof that you can hand the print*()
methods any blessed object
that responds to a print()
message.
Right now, this is done by piping it into the "sendmail" command
as given by sendmail()
. It probably will only work on Unix systems.
Returns false if sendmail seems to have failed, true otherwise. Fatal exception raised if the open fails.
send()
.
You may supply it as either a single string, or an array of
path-to-command-plus-arguments:
sendmail MIME::Lite "/usr/lib/sendmail", "-t", "-oi", "-oem";
What you see above is the default.
quiet MIME::Lite 1; # I know what I'm doing
I recommend that you include that comment as well. And while
you type it, say it out loud: if it doesn't feel right, then maybe
you should reconsider the whole line. ;-)
This is "lite", after all...
build()
time by virtue of residing in a simple path, or in-core.
Since content-length is not a standard MIME field anyway (that's right, kids:
it's not in the MIME RFCs, it's an HTTP thing), this seems pretty fair.
I thought putting in a sendmail invocation wasn't too bad an idea, since a lot of Perlers are on UNIX systems. The default arguments to sendmail (which you can change) are:
-t Scan message for To:, Cc:, Bcc:, etc.
-oi Do NOT treat a single "." on a line as a message terminator. As in, "-oi vey, it truncated my message... why?!"
-oem On error, mail back the message (I assume to the appropriate address, given in the header). When mail returns, circle is complete. Jai guru deva -oem.
This class treats a MIME header in the most abstract sense, as being a collection of high-level attributes. The actual RFC-822-style header fields are not constructed until it's time to actually print the darn thing.
Important: the MIME attributes are stored and manipulated separately from the message header fields; when it comes time to print the header out, any explicitly-given header fields override the ones that would be created from the MIME attributes. That means that this:
### DANGER ### DANGER ### DANGER ### DANGER ### DANGER ### $msg->add("Content-type", "text/html; charset=US-ASCII");
will set the exact "Content-type"
field in the header I write,
regardless of what the actual MIME attributes are.
This feature is for experienced users only, as an escape hatch in case
the code that normally formats MIME header fields isn't doing what
you need. And, like any escape hatch, it's got an alarm on it:
MIME::Lite will warn you if you attempt to set()
or replace()
any MIME header field. Use attr()
instead.
The "Type" parameter of build()
is a content type.
This is the actual type of data you are sending.
Generally this is a string of the form "majortype/minortype"
.
Here are the major MIME types. A more-comprehensive listing may be found in RFC-2046.
application/octet-stream
, application/gzip
, application/postscript
...
audio/basic
...
image/gif
, image/jpeg
...
message/rfc822
...
multipart/mixed
, multipart/alternative
...
text/plain
, text/html
...
video/mpeg
...
The "Encoding" parameter of build()
.
This is how the message body is packaged up for safe transit.
Here are the 5 major MIME encodings. A more-comprehensive listing may be found in RFC-2045.
The most liberal, and the least likely to get through mail gateways. Use sparingly, or (better yet) not at all.
Current version: $Id: Lite.pm,v 1.123 1998/05/01 16:40:18 eryq Exp $
The 7bit encoding no longer does "escapes"; it merely strips 8-bit characters.
New, prettier way of specifying mail message headers in build()
.
New quiet method to turn off warnings.
Changed "stringify" methods to more-standard "as_string" methods.
read_now()
, and binmode()
method for our non-Unix-using brethren:
file data is now read using binmode() if appropriate.
Thanks to Xiangzhou Wang for pointing out this bug.
Copyright (c) 1997 by Eryq. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This software comes with NO WARRANTY of any kind. See the COPYING file in the distribution for details.
For some reason, the US FDA says that this is now required by law on any products that bear the name "Lite"...
Serving size: 1 module Servings per container: 1 Calories: 0 Fat: 0g Saturated Fat: 0g
Warning: for consumption by hardware only! May produce indigestion in humans if taken internally.
Eryq. President, Zero G Inc. eryq@zeegee.com / http://www.zeegee.com.
Created: 11 December 1996. Ho ho ho.