temp-mails
A basic wrapper around almost all temp mail sites on google, aiming to provide an almost identical api for every site.
The main purpose of this is to provide an easy way to use different temp mail services with almost the same python api, meaning little refactoring is needed.
If there are any issues, please send me an email (bertigert@riseup.net) or create an issue, i cant test every email for every change I or the host makes since this library supports all temp mail providers which I could find on google (see below) which work and are not captcha protected.
Installation
While every python3 version should hypothetically work, python 3.12 is best
pip install temp-mails
Requirements
pip install requests beautifulsoup4 lxml websocket-client==1.7.0
Note that you may need to uninstall all websocket packages in order for websocket-client to function properly
Usage
Create an email on the site https://10minemail.com/
from temp_mails import Tenminemail_com
from send_email import send_email_sync
mail = Tenminemail_com()
print(mail.name, mail.domain, mail.email)
print(mail.get_inbox())
send_email_sync(mail.email)
data = mail.wait_for_new_email(delay=1.0, timeout=120)
print(data)
if data:
print(mail.get_mail_content(message_id=data["id"]))
The wrapper api for each email host is very similar, so little refactoring is needed in order to change the email host. However, the email data may change in format or similar. One email host could just return a string with the html content of the email, another one could return a dict with subject, content etc, I will probably add better support for that at some point.
Also note that only some hosts support user defined names/domains.
Also note that the built in wait_for_mail can break if there are too many emails or too many emails at once. You can implement you own custom function for that case. It works for all my use cases though (verifications etc). Many built in wait_for_new_email functions have optimizations in them, so you should use them unless absolutely necessary.
This libray is designed with minimal error handling built in. This is because if an error occurs in the library, something broke and it wouldn't work anyways, there is no way for automatic recovery since it is all based on 3rd party sites.
Some additional information
Some temp mails are really responsive, thus using wait_for_new_email in a sync program may be too slow. Because of this, for some tempmails there is a way to use threads (+3 loc):
from time import sleep
from threading import Event
from concurrent.futures import ThreadPoolExecutor
from temp_mails import Byom_de
from send_email import send_email_sync
mail = Byom_de()
print(mail.email)
is_ready_event = Event()
t = ThreadPoolExecutor().submit(mail.wait_for_new_email, is_ready_event=is_ready_event)
is_ready_event.wait()
send_email_sync(mail.email)
result = t.result()
print(result)
You can check if a tempmail provides this feature by checking if the wait_for_new_email function has is_ready_event as an argument. I will add this to more functions on demand.
Another way to avoid being too slow is the start_length argument in some wait_for_new_email function. Some tempmails check for a new mail by checking if the inbox changed. In order to get the start_length, the inbox is checked once. If the email is received before this call is made, the email cannot be awaited. By using start_length as an argument, you can specify the start_length of the inbox:
from temp_mails import Tempmail_id
from send_email import send_email_sync
mail = Tempmail_id()
old_length = len(mail.get_inbox())
r = send_email_sync(mail.email)
data = mail.wait_for_new_email(start_length=old_length)
print(data)
Supported Unique Sites (119) (~107 working as of 23.08.2024)
unofficial = we use no official API, because the website does not offer one (at least for free)
semi-official = website hat an official API, but we don't use it, often because it is using RapidAPI, broken or requires an API key
official = we use the websites official API (RapidAPI or not)
captcha = requires you to go onto the website and solve a captcha/verify your browser on the same IP. After that it should work for some requests/minutes. You may need to manually add a captcha response. In some cases, it just does not work anymore, I won't remove the script though as the "knowledge" could still be interesting.
In Progress
Sites which worked at some point
- https://tempmail.adguard.com/ - unofficial, captcha
- https://tempmailbeast.com/ - unofficial, doesn't provide service anymore?
- https://tempmail.gg/ - unofficial, offline
- https://tempmailers.com/ - unofficial, offline/suspended
- https://schutz-mail.de/ - unofficial, offline
- https://maildax.com/ - unofficial, captcha
- https://www.temils.com/ - unofficial, offline
- https://www.minutemailbox.com/ - unofficial, broken
- https://fakermail.com/ - unofficial, offline
- http://mailcatch.com/ - unofficial, offline
- https://rainmail.xyz/ - unofficial, offline
- https://www.crazymailing.com/ - unofficial, offline
- https://getnada.cc/ - official, broken
- https://wp-temp-mail.com/ - unofficial, offline
- https://temp-mailbox.net/ - unofficial, offline
Websites I won't add