ttcuberat has asked for the wisdom of the Perl Monks concerning the following question:
$From = "\"$From_Name\" <$From_Who>"; + $msg = MIME::Lite->new( From => $From, To => $Recipient, Subject => $From_Msg, Type => 'TEXT', Data => $From_Body ); foreach (@files) { $msg->attach(Type => 'BINARY', Path => "$dir/$_", Filename => $_, Disposition => 'attachment' ); } $msg->send("sendmail", "/usr/lib/sendmail -t -oi -oem");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: mime::lite Problem
by vek (Prior) on Apr 10, 2003 at 07:10 UTC | |
|
Re: mime::lite Problem
by bbfu (Curate) on Apr 09, 2003 at 23:09 UTC |