in reply to Re^3: using arguments
in thread using arguments

the most irritating thing is that I need the code of perltst in hash. not in glob... and I can't find a way to do that

+ I don't everything understand what I find because I'm a newbie in perl

Replies are listed 'Best First'.
Re^5: using arguments
by dHarry (Abbot) on Dec 19, 2008 at 15:20 UTC

    See The Evolution of Perl Email Handling for an example based on a reference to an array. I don't know what your file looks like. Maybe you should post the content of the file. Putting the file content in an array and passing the reference to it in the constructor should be straightforward. e.g.

    my @message = <FH>; Mail::Internet->new( \@message );