Fixed README

This commit is contained in:
Syrus Akbary
2012-04-07 23:07:14 +02:00
parent 49034b13b6
commit 8fcf614de6

View File

@@ -33,7 +33,7 @@ Basic usage::
Checking domain has SMTP Server Checking domain has SMTP Server
------------------------------- -------------------------------
For check if the host has SMPT Server Check if the host has SMPT Server::
from validate_email import validate_email from validate_email import validate_email
is_valid = validate_email('example@example.com',mx=True) is_valid = validate_email('example@example.com',mx=True)
@@ -42,7 +42,7 @@ For check if the host has SMPT Server
Verify email exists Verify email exists
------------------- -------------------
Check if the host has SMPT Server and the email exists in the server. Check if the host has SMPT Server and the email exists in the server::
from validate_email import validate_email from validate_email import validate_email
is_valid = validate_email('example@example.com',verify=True) is_valid = validate_email('example@example.com',verify=True)