feat: added version 0.1.0

This commit is contained in:
2025-05-19 16:00:40 +02:00
parent 5cce8e014b
commit 1dce7f3016
3 changed files with 104 additions and 0 deletions

20
validate_mail.py Normal file
View File

@@ -0,0 +1,20 @@
from validate_email import validate_email
# Replace with your target email
emails =[
"conrad@noah.tech",
"bernd@noah.tech"
]
for mail in emails:
is_valid = validate_email(
email_address=mail,
check_format=True,
check_blacklist=True,
check_dns=True,
dns_timeout=10,
check_smtp=True,
smtp_timeout=10,
)
print(f"Is '{mail}' valid? -> {is_valid}")