in reply to Fun w/ Elaborate data structures

Try this :
foreach my $user ( @{$users_ref} ) { my $to = $user."@".$domain; # my $from = $user->[0]."@".$domain; # wrong my $from = $users_ref->[0]."@".$domain; # correct ..
poj

Replies are listed 'Best First'.
Re: Re: Fun w/ Elaborate data structures
by ebodine (Novice) on Feb 08, 2003 at 22:44 UTC
    Thanks, must have caught a mild case of dereferencing dementia.

    --ERick