in reply to Yet Another Email Validation question
Greetings sweetblood,
Check out Email::Valid. I'm a big fan of letting someone else do my work for me, and the module looks fast.
use Email::Valid; my $valid_email = (Email::Valid->address($unverified_email)) ? $unverified_email : undef;
gryphon
code('Perl') || die;
20040408 Edit by BazB: Changed title from 'Re: yare for email address'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Yet Another Email Validation question
by sweetblood (Prior) on Apr 06, 2004 at 15:57 UTC | |
by Abigail-II (Bishop) on Apr 06, 2004 at 19:34 UTC |