NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
But what about (Score:1)
I love it:
my $msg=MIME::Lite->new(
From => $hr->{'email'},
To => ADMINISTRATOR_EMAIL,
Subject => "New Applicant",
Type => 'TEXT',
Data => "The application for $hr->{'name'} is attached to this email message in HTML format.\nOpen it in your web browser to view or print.",
);
$msg->attach(
Type => "text/html",
Data => $app,
Disposition => 'attachment',
Filename =>'application.html',
);
$msg->send;
Reply to This
Re:But what about (Score:2, Informative)