From 48666681768a633b78ce4d19cf61f4613e19e2df Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Mon, 13 Jul 2015 16:13:26 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08507df..0ffd6dd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Originally collected to filter new user registration at https://usegalaxy.org an Example Usage ============= -Python (thanks to @txt3rob) +Python ```Python blacklist = ('disposable_email_blacklist.conf') blacklist_content = [line.rstrip() for line in blacklist.readlines()] @@ -17,7 +17,7 @@ if email.split('@')[1] in blacklist_content: else: return True ``` -PHP +PHP contributed by @txt3rob ```php function is_temp_mail($mail) { $list = file_get_contents ('disposable_email_blacklist.conf');