Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
email address input
#5
I got the email-validator working from here
https://stackabuse.com/validate-email-ad...validator/

I'm not going to show my email but, real emails do work

from email_validator import validate_email, EmailNotValidError

testemails = ['[email protected]', '[email protected]', 'user@[email protected]']

for index, email in enumerate(testemails):
    try:
        validate_email(email)
        print(f'email {index+1}: Valid email')
    except EmailNotValidError as error:
        print(f'email {index+1}: {error}')
Output
Output:
email 1: The domain name site.org does not exist. email 2: Valid email email 3: The part after the @-sign contains invalid characters: '@'.
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply


Messages In This Thread
email address input - by jacksfrustration - Jun-26-2024, 05:03 AM
RE: email address input - by rodiongork - Jun-26-2024, 05:13 AM
RE: email address input - by jacksfrustration - Jun-26-2024, 05:17 AM
RE: email address input - by Pedroski55 - Jun-26-2024, 07:12 AM
RE: email address input - by menator01 - Jun-26-2024, 08:24 AM
RE: email address input - by DeaD_EyE - Jun-26-2024, 08:35 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  problem in entering address of a file in input akbarza 0 788 Oct-18-2023, 08:16 AM
Last Post: akbarza
  Extracing unique email address from a folder of emails jehoshua 6 3,060 Oct-14-2020, 12:43 AM
Last Post: jehoshua
  Grabing email from a class with input from name Nickd12 2 1,927 Oct-13-2020, 06:22 PM
Last Post: Nickd12
  Slicing and printing two halfs of an email address (Udemy) Drone4four 5 3,010 Aug-26-2019, 09:01 AM
Last Post: wavic
  An email with inline jpg cannot be read by all email clients fpiraneo 4 4,247 Feb-25-2018, 07:17 PM
Last Post: fpiraneo
  Email - Send email using Windows Live Mail cyberzen 2 6,086 Apr-13-2017, 03:14 AM
Last Post: cyberzen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020