pip install -U catway
- 1 - Send email to your custom email, for example:
[email protected]
- 2 - Get inbox:
from catway import CatMail
def main():
with CatMail("[email protected]") as email:
for mail in email.get_inboxes():
print(mail)
print(email.get_inbox(mail.id))
main()