[EMAIL PROTECTED] wrote:
> Does anyone see anything logically wrong with my code b/c I am still
> not receiving the correct data in the email.  The data is a # 1 when
> it should be a listing of Exxxxx strings.

[snip]

>                         Data    => print "@ftapes" );

This is assigning the return value of print(), which is a true/false. As
already pointed out to you, you want:

   Data => "@ftapes"

or

   Data => join("\n", @ftapes)

-- 
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