hamdyabdelmenem90
Crypto Security Auditor
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 2
1000 XP
Link:
Python:
[Paste your content here. Remove this line and one below!]
[DO NOT PASTE THE CONTENT ABOVE OR BELOW THE REPLY QUOTES]
Python:
Code:
from fake_email import Email
import time
import os
try:
from cfonts import render, say
except:
os.system('pip install python-cfonts')
def email_olustur():
email_bilgisi = Email().Mail()
email = email_bilgisi["mail"]
print(f"• Email ↼ {email} ..\n• Any message will be sent to your inbox.")
while True:
gelen_mesajlar = Email(email_bilgisi["session"]).inbox()
if gelen_mesajlar:
print(f"• Messages you have: {gelen_mesajlar}")
yenile_input = input("Press 'g' and then Enter to update the messages (you can exit by typing 'exit'): ")
if yenile_input.lower() == 'exit':
break
elif yenile_input.lower() == 'g':
continue
if __name__ == "__main__":
email_olustur()
[DO NOT PASTE THE CONTENT ABOVE OR BELOW THE REPLY QUOTES]