syrusakbary / validate_email

Validate_email verify if an email address is valid and really exists
Other
572 stars 232 forks source link

Problem with hotmail email #107

Open drinith opened 4 years ago

drinith commented 4 years ago

I am testing hotmail emails with the following code and they return none


from validate_email import validate_email

def testemail(emailAdress):
    is_valid = validate_email(emailAdress,verify=True)
    print(emailAdress+" "+str(is_valid))

if (__name__ == "__main__"):

    testemail('belofel@hotmail.com')
    testemail('d_guterres_rj@hotmail.com')
    testemail('zzzxxxyyydddd@gmail.com')
    testemail('flavialopes71@hotmail.com')
tonybastienricher commented 4 years ago

same for icloud.com

mohanarunachalam commented 4 years ago

I am also facing the same problem for hotmail.com and yahoo.com. Is there any workaround for these other domains? Any suggestions would be really helpful.

ramh2002 commented 3 years ago

I have tried with helo_host= 'smtp.live.com' even still I am unable to send mails..

adambaylin21 commented 3 years ago

solutions:

def single():
    # ema = raw_input("Type the email to search: ")
    ema = "belofel@hotmail.com"
    is_valid = validate_email(ema,verify=True)
    if str(is_valid).upper() == "TRUE":
        stdout.write(GREEN + "[*] FOUND - [" + ema + "]\n" + END)
    else:
        stdout.write(RED + "[!] NOTFD - [" + ema + "]\n" + END)

if __name__ == '__main__':
    single()

1

Beijianglong commented 1 year ago

geat, can you provide in more detail?l can`t do it with your code, thanks