in reply to Re^2: run a Perl program in Windows Task Scheduler
in thread run a Perl program in Windows Task Scheduler
my $mail = MIME::Lite->new( From=> 'me@me.com, To=> 'someone@cool.com', Subject=> "Hello email ", Type=>'multipart/mixed' ); $mail->attach( Type => 'application/x-tar', Encoding => 'base64', Path => 'C:\path\to\file.tar', Filename => "file.tar" ); MIME::Lite->send('smtp','server.smtp.com',Debug=>0); $mail->send;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: run a Perl program in Windows Task Scheduler
by Anonymous Monk on Apr 24, 2014 at 15:34 UTC | |
by Anonymous Monk on Apr 25, 2014 at 07:03 UTC |