in reply to Help sending with MIME::Lite
Questions to ask:my $scratchtps="/usr/local/log/sctps"; sub mailme { open (INP, $scratchtps) || die $!; my $content = join('', <INP>); close(INP); my $msg = MIME::Lite->new( From => 'EDM01 <root@edm01.ohnet>', To => 'Derek Smith <dbsmith@ohiohealth.com>', Subject => "EDM Return Tapes", Data => $content ); $msg->send; } if ( -s $scratchtps ) { &mailme; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help sending with MIME::Lite
by etcshadow (Priest) on Sep 17, 2004 at 20:38 UTC | |
|
Re^2: Help sending with MIME::Lite
by drock (Beadle) on Sep 17, 2004 at 21:49 UTC |