You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is a new pull request for this project but it is limited you can only search domain specific emails for the bulk email....it would have been better if it could be possible to search every single domain present in the url
I use the following regex to also include email addresses with dot in the prefix:
emailRegex=re.compile(r''' # Matches emails, example: # [email protected] # [email protected] ( ([a-zA-Z0-9_.+-]+) # Username characters: letters, digits, dots, underscores, pluses, hyphens @ ([a-zA-Z0-9-]+ # Domain name part before last dot: letters, digits, hyphens (\.[a-zA-Z0-9-]+)* # Optional middle subdomains: start with a dot, followed by letters, digits, hyphens \.[a-zA-Z]{2,}) # Top-level domain: dot followed by two or more letters )''', re.VERBOSE)
Hi!
The email regex
email_expression
does not include email addresses with dot in the prefix.The text was updated successfully, but these errors were encountered: