Répondre à la boîte de réception Python

>>> import easyimap
>>> host = "imap.gmail.com"
>>> user = "[email protected]"
>>> password = "hogehogehogehoge"
>>> mailbox = "secret"
>>> imapper = easyimap.connect(host, user, password, mailbox)
ammar almansor