- or download this
my @codes = unpackEmail( $input );
- or download this
use HTML::Entities;
my @codes = map{ encode_entities( $_, '\x00-\xff' ) } split//, $in
+put;
- or download this
my $link = '<a href="mailto:' . "$mailto" .
'">' . "$mailto</a>";
...
# to this:
my $link = a( { -href => $mailto }, $mailto );