I dug around in the source of Email::MIME and Email::Simple a bit. Email::MIME inherits from Email::Simple. Email::Simple has a body_set function that sets an object var, "body" (key in blessed hash ref). The "as_string" method in Email::MIME overrides the one in Email::Simple. The one in Email::MIME looks at the "body_raw" object var (key in blessed hash ref). So when you call body_set(), it sets "body" but when you call as_string, it doesn't look for "body" it looks for "body_raw" instead.
There are a number of things you can do. You can subclass Email::MIME and create a sub, body_set, that sets "body_raw" AND "body" so you're compatible with both. Or you can override as_string to print the one from body_raw instead. Instead of using "as_string" you can just print the headers then body yourself, using the headers and "body" joined by a newline.
From Email::MIME:
sub as_string {
my $self = shift;
return $self->__head->as_string
. ($self->{mycrlf} || "\n") # XXX: replace with ->crlf
. $self->body_raw;
}
From Email::Simple:
sub as_string {
my $self = shift;
return $self->header_obj->as_string . $self->crlf . $self->body;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.