Re: sending email with perl

2007-05-06 Thread Garrett Cooper
Jeffrey Goldberg wrote: On May 6, 2007, at 10:48 AM, Olivier Regnier wrote: Hello, I written a small script in perl to send email. Here is the code: #!/usr/bin/perl -w use strict; use warnings; use MIME::Lite; my $msg = new MIME::Lite From =>'[EMAIL PROTECTED]', To =>'[EMAIL PROTECTED]', Su

Re: sending email with perl

2007-05-06 Thread Jeffrey Goldberg
On May 6, 2007, at 10:48 AM, Olivier Regnier wrote: Hello, I written a small script in perl to send email. Here is the code: #!/usr/bin/perl -w use strict; use warnings; use MIME::Lite; my $msg = new MIME::Lite From =>'[EMAIL PROTECTED]', To =>'[EMAIL PROTECTED]', Subject =>'test', Type =>'T

sending email with perl

2007-05-06 Thread Olivier Regnier
Hello, I written a small script in perl to send email. Here is the code: #!/usr/bin/perl -w use strict; use warnings; use MIME::Lite; my $msg = new MIME::Lite From =>'[EMAIL PROTECTED]', To =>'[EMAIL PROTECTED]', Subject =>'test', Type =>'TEXT', Data =>'Hello this is a test'; $msg -> send; I