"Wiggins d'Anconia" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> my @message = <MESSAGE>;
>
> my %mails = (
>      From    => "$from",
>      Subject => "$subject",
>      Message => join "", @message,
> );
>

or even just:

> my %mails = (
>      From    => "$from",
>      Subject => "$subject",
        Message => join('', <MESSAGE>),
> );

Todd W.



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to