in reply to Re: Passing array into a hash
in thread Passing array into a hash

Thank you! I spaced out on getting it with "$" and not with "@".

Thats the way:
my $all_msgs = $args{all_msgs} || '';
and processing it:
foreach my $msgs (@{ $all_msgs }) { ...
Problem solved, thanks again!