You are here

function email_verify_check in Email Verify 6

Same name and namespace in other branches
  1. 5 email_verify.module \email_verify_check()
  2. 7.2 email_verify.module \email_verify_check()
  3. 7 email_verify.module \email_verify_check()

Verifies whether the given mail address exists.

Parameters

$mail: Email address to verify.

Return value

NULL if the address exists, or an error message if we found a problem with the address.

2 calls to email_verify_check()
email_verify_checkall in ./email_verify.check.inc
Menu callback; look though the whole user base for invalid emails. Can be very long when hosts timeout.
email_verify_edit_validate in ./email_verify.module

File

./email_verify.module, line 45
Verifies thoroughly that email addresses are correctly entered Copyright: Daniel Bonniot <bonniot@users.sourceforge.net> License: GNU GPL v2 or later

Code

function email_verify_check($mail) {
  include_once dirname(__FILE__) . '/email_verify.inc.php';
  return _email_verify_check($mail);
}