Home : General : Perl Programming :

General: Perl Programming: Re: [Andy] Piping an email...: Edit Log

Here is the list of edits for this post
Re: [Andy] Piping an email...
You can get around it by not using Exim Wink

Btw,

Code:
my $data;
foreach (@data) {
$data .= $_;
}

...why not:

Code:
my $data = join "", @data;

Last edited by:

Paul: Mar 21, 2003, 8:47 AM

Edit Log: