in reply to Re: Re: quoted-printable, and ugly code
in thread quoted-printable, and ugly code
But that's because I kinda abhor such ephemeral temporary variables. At the very least, that push() is useless.push my @addr, Mail::Address->parse($1); $address = $addr[0]->address; # to $address = (Mail::Address->parse($1))[0]->address;
|
|---|