- or download this
foreach (@emails){
next unless $_;
next if $_ =~ $ignore;
push(@newemails, $_);
}
- or download this
print Dumper \@emails;
- or download this
my ($email, $domain) = split(/\@/, $newemails[0]);
- or download this
&mail($newemails[0], $domain) if $newemails[0] and $domain;