Due to constraints I've had to roll my own attachment doohicky for
Mail::SendMail.
It takes a hash of "filenames" and "contents",
the original
script it's taken from
here handles files using a binary read of files to be attached.
Here seems to be
the problem, the encoding for the files seems to be duff,
using quotable text,
I'm sending an XML attachment.
My code generates strings, I'm loathe to print them to a file and read them back using binmode,
can I use 'pack' or 'vec' or is there a different content type I can use?
use Mail::Sendmail;
sub attach {
my $f = shift;
my $boundary = "====" . time() . "====";
$f->{body} = encode_qp( $f->{message} );
$f->{from} = 'test@thesite.org';
delete($f->{message});
$f->{'content-type'} = "multipart/mixed; boundary=\"$boundary\"";
$boundary = '--'.$boundary;
$f->{body} = <<HEAD;
$boundary
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
$f->{body}
HEAD
while ( my($file,$data) = each %{$f->{attachment}}){
$f->{body} .= <<ATTACH;
$boundary
Content-Type: application/octet-stream; name="$file"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment; filename="$file"
$data
$boundary--
ATTACH
}
delete($f->{attachment});
sendmail(%$f);
}
--
Brother Frankus.
¤
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.