Howdy all! If you have a function that is expecting a FILEHANDLE as it's argument how could you supply it a variable instead?
For instance: my $mio = Mail::Internet(\*STDIN); ... Which is peachy. What I'd like to be able to do is use the data in the variable $data instead of STDIN's data. my $mio = Mail::Internet($data); ... So what would I need to do, assign $data to a FILEHANDLE somehow and pass that FILEHANDLE off instead of STDIN or ??? TIA Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]