TStanley has asked for the wisdom of the Perl Monks concerning the following question:
use MIME::Lite; use Net::SMTP; $msg = MIME::Lite->new( From =>'root@mycompany.com', To =>'myname@mycompany.com', Subject =>'Summary Report', Type =>'multipart/mixed' ); $msg->attach( Type =>'TEXT', Filename =>'$rptname' ); MIME::Lite->send(smtp, "localhost"); $msg->send; exit 0;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Another MIME::Lite/Net::SMTP Question
by steveAZ98 (Monk) on Aug 01, 2000 at 01:32 UTC | |
|
Re: Another MIME::Lite/Net::SMTP Question
by plaid (Chaplain) on Jul 31, 2000 at 23:26 UTC | |
|
Re: Another MIME::Lite/Net::SMTP Question
by Anonymous Monk on Aug 01, 2000 at 11:40 UTC | |
|
Re: Another MIME::Lite/Net::SMTP Question
by Anonymous Monk on Aug 01, 2000 at 15:04 UTC | |
|
Re: Another MIME::Lite/Net::SMTP Question
by TStanley (Canon) on Jul 31, 2000 at 23:40 UTC | |
|
Re: Another MIME::Lite/Net::SMTP Question
by TStanley (Canon) on Aug 01, 2000 at 18:12 UTC | |
|
A living,breathing, fully-working MIME::Lite example
by princepawn (Parson) on Nov 03, 2000 at 19:04 UTC | |
by lachoy (Parson) on Nov 03, 2000 at 19:36 UTC | |
by agoth (Chaplain) on Nov 03, 2000 at 23:30 UTC |