Marcus Bointon wrote:
The PEAR rfc822 class is pretty good, but it should be noted it's designed for parsing entire to, cc, bcc fields which may contain multiple addresses, and it's not quite as simple as asking it 'is this address ok'.

News to me...

if (!PEAR::isError(Mail_RFC822::parseAddressList('[EMAIL PROTECTED]'))) {
    // Valid...
}

It even has a method specifically for "normal" email addresses of the form [EMAIL PROTECTED]

if (Mail_RFC822::isValidInetAddress('[EMAIL PROTECTED]')) {
    // Valid...
}

--
Richard Heyes
http://www.phpguru.org

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to