forked from dominicsayers/isemail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
53 lines (41 loc) · 1.93 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
is_email()
Copyright 2008-2011 Dominic Sayers <dominic@sayers.cc>
http://isemail.info
BSD License (http://www.opensource.org/licenses/bsd-license.php)
-------------------------------------------------------------------------------
How to use is_email()
-------------------------------------------------------------------------------
1. Add the downloaded file is_email.php to your project
2. In your scripts use it like this:
require_once 'is_email.php';
if (is_email($email)) echo "$email is a valid email address";
3. If you want to return detailed diagnostic error codes then you can ask
is_email to do so. Something like this should work:
require_once 'is_email.php';
$email = 'dominic@sayers.cc';
$result = is_email($email, true, true);
if ($result === ISEMAIL_VALID) {
echo "$email is a valid email address";
} else if ($result < ISEMAIL_THRESHOLD) {
echo "Warning! $email has unusual features (result code $result)";
} else {
echo "$email is not a valid email address (result code $result)";
}
4. Example scripts are in the extras folder
-------------------------------------------------------------------------------
Version history
-------------------------------------------------------------------------------
Date Component Version Notes
.......... ............ ....... ...............................................
2010-10-18 is_email.php 3.0 Forensic categorization of email validity
2010-10-18 tests.xml 3.0 New schema designed to enhance fault
identification.
2011-05-23 tests.xml 3.02 tests.php
Argument no longer passed by reference
(deprecated)
Test#32
Changed domain to c--n.com because g--a.com no
longer has an MX record.
2010-11-15 meta.xml 3.03 Clarified definition of Valid for numpties
2011-07-14 tests.xml 3.04 Changed my link to http://isemail.info
-------------------------------------------------------------------------------