Skip to content

Commit 252fdea

Browse files
committed
deploy new version
1 parent dc3a09d commit 252fdea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Validates emails based on regex, common typos, disposable email blacklists, DNS records and SMTP server response.
44

5-
- Validates email is compliant with [RFC standard](https://tools.ietf.org/html/rfc2822#appendix-A.1.2) using regex.
6-
- Validates common typos e.g. [email protected].
7-
- Validates email was not generated by disposable email service.
5+
- Validates email looks like an email i.e. contains an "@" and a "." to the right of it.
6+
- Validates common typos e.g. [email protected] using [mailcheck](https://github.com/mailcheck/mailcheck).
7+
- Validates email was not generated by disposable email service using [disposable-email-domains](https://github.com/ivolo/disposable-email-domains).
88
- Validates MX records are present on DNS.
99
- Validates SMTP server is running.
1010
- Validates mailbox exists on SMTP server.
@@ -42,7 +42,7 @@ const main = async () => {
4242
// },
4343
// "smtp": {
4444
// "valid": false,
45-
// "reason": "Invalid Mailbox",
45+
// "reason": "Mailbox not found.",
4646
// }
4747
// }
4848
// }

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deep-email-validator",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"files": [
55
"dist/**/*"
66
],

0 commit comments

Comments
 (0)