You are here

function email_verify_check in Email Verify 7

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

Verifies whether the given mail address exists.

Parameters

string $mail: Email address to verify.

Return value

string 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.
email_verify_edit_validate in ./email_verify.module
Additional validation for the user form.

File

./email_verify.module, line 140
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) {
  module_load_include('php', 'email_verify', 'email_verify.inc');
  return _email_verify_check($mail);
}