An open API service indexing awesome lists of open source software.

https://github.com/zebbern/temp-mail

Python GUI | To generate and manage temp-mails using multiple providers. Designed to help you create, view, and copy temp-mail addresses without losing access mid-session.
https://github.com/zebbern/temp-mail

authentication gmail mail mail-app mail-client mail-server mail-verification mail-verify python python-mail temp temp-mail temp-mail-api temp-mail-app temp-mail-website verification-code

Last synced: 5 months ago
JSON representation

Python GUI | To generate and manage temp-mails using multiple providers. Designed to help you create, view, and copy temp-mail addresses without losing access mid-session.

Awesome Lists containing this project

README

          

# Temp-Mail

> Python GUI to generate and manage temp-mails using multiple providers. Designed to help you create, view, and copy temp-mail addresses without losing access mid-session.

![temp-zebbern](https://github.com/user-attachments/assets/af783c73-d7d5-4af2-aeae-85ff5b279952)

## Features

* Multiple temp mail services (e.g., GuerrillaMail, Mail.tm, DropMail)
* Persistent message caching and inbox refresh
* HTML and raw message view tabs
* Copy/delete address management

## Installation

**Windows:**

```bash
python -m venv venv && venv\Scripts\activate
pip install -r requirements.txt
python tempgen.py
```

**Linux/macOS:**

```bash
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
python tempgen.py
```

---