From 8fcf614de65a21c47206bb24fc94f758db09dd0a Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Sat, 7 Apr 2012 23:07:14 +0200 Subject: [PATCH] Fixed README --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 33af74f..7bb8d47 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ Basic usage:: 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 is_valid = validate_email('example@example.com',mx=True) @@ -42,7 +42,7 @@ For check if the host has SMPT Server 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 is_valid = validate_email('example@example.com',verify=True)