Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
sub sql { my @output = $sqlCount->execute; while (@output=$sqlCount->fetchrow_array) { print "data: @output \n"; } $sqlCount->finish(); $dbcon->disconnect(); } my $msg = MIME::Lite->new( from=>'', to =>'', subject=>'', Data=>'&sql;' ### yeah, I wish ); $msg->send('smtp','foobar',Timeout=>60);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: passing data using MIME::Lite
by Joost (Canon) on Mar 01, 2005 at 15:50 UTC | |
|
Re: passing data using MIME::Lite
by jdtoronto (Prior) on Mar 01, 2005 at 16:01 UTC | |
|
Re: passing data using MIME::Lite
by deibyz (Hermit) on Mar 01, 2005 at 15:52 UTC | |
|
Re: passing data using MIME::Lite
by Anonymous Monk on Mar 01, 2005 at 16:27 UTC |