%hash = ( # george is added 'george@host.com' => 'george', ); %hash = ( # bill is added 'george@host.com' => 'george', 'bill@company.net' => 'bill', ); #### %hash = ( # george is added 'email' => 'george', ); %hash = ( # bill is added 'email' => 'bill', ); #### $this{$email} = $name;
## %hash = ( # george is added 'email' => 'george', ); %hash = ( # bill is added 'email' => 'bill', ); ##
## $this{$email} = $name;