8000 GitHub - jojorand89/email-gen: Make Fake Email Generator for ur business, dont forget to STAR and FORK this repository
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Make Fake Email Generator for ur business, dont forget to STAR and FORK this repository

License

Notifications You must be signed in to change notification settings

jojorand89/email-gen

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💥 EMAIL GENERATOR 💥



Install Module : pip install faker

Example Code

try:
        int(number_of_mails)
    except:
        raise ValueError('Enter an integer!')

    for i in range(number_of_emails):
        name = fake.name()
        name = name.replace(" ","")
        name = name.lower()

        num = random.randint(0,1000)
        num = str(num)

        domain = random.choice(domains)

        e_name = name
        e_name += num

        full_email = e_name+domain

        url = "https://mailsac.com/inbox/"

        print(url+e_name+domain)
        print(full_email)
        print('======================')

⭐ Features ⭐



+ Very fast execution (under 0.002ms!)
Go Click here for download


📌 Disclaimer 📌



  • Please use this program only for educational purposes.
  • It is not meant to be used in any malicious way, and I decline any responsibility for what you do with it.


About

Make Fake Email Generator for ur business, dont forget to STAR and FORK this repository

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0