Created
July 1, 2024 03:31
-
-
Save Coding4Hours/ba2216b38ade0cc6c41a5eee522cc4b2 to your computer and use it in GitHub Desktop.
Want temp emails? I've got your back.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from TempMail import TempMail | |
mail = TempMail() | |
# login Your tempmail | |
inb = TempMail("Enter 24 no ID", "Enter 32 or 36 lenght Token") | |
# Make New Temp Email | |
email = TempMail.generateInbox(mail) | |
print(email) | |
print(type(email)) | |
# Check for Emails | |
inb = TempMail.getEmails(mail, inbox = email) | |
print(inb) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment