You are here

function email_verify_check in Email Verify 7.2

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 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_verify_address in ./email_verify.module
Additional validation for the form to verify the email address.
_email_verify_batch_display_process_batch in ./email_verify.check.inc
The batch process for checking the users.

File

./email_verify.module, line 189
Verifies thoroughly that email addresses are correctly entered.

Code

function email_verify_check($mail) {
  module_load_include('inc', 'email_verify');
  return _email_verify_check($mail);
}