https://github.com/omkarcloud/omkar-temp-mail
🚀 OMKAR TEMP MAIL HELPS YOU USE TEMPORARY EMAILS. 🤖
https://github.com/omkarcloud/omkar-temp-mail
10minute 10minutemail beautifulsoup crawling disposable-email disposable-email-addresses free-mail mail-api scraper scraping scraping-framework selenium temp-mail tempmail temporary-email web-crawler web-crawling web-scraper web-scraping webscraping
Last synced: 3 months ago
JSON representation
🚀 OMKAR TEMP MAIL HELPS YOU USE TEMPORARY EMAILS. 🤖
- Host: GitHub
- URL: https://github.com/omkarcloud/omkar-temp-mail
- Owner: omkarcloud
- License: mit
- Created: 2023-06-13T15:54:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T09:11:44.000Z (over 1 year ago)
- Last Synced: 2025-03-10T19:18:51.458Z (4 months ago)
- Topics: 10minute, 10minutemail, beautifulsoup, crawling, disposable-email, disposable-email-addresses, free-mail, mail-api, scraper, scraping, scraping-framework, selenium, temp-mail, tempmail, temporary-email, web-crawler, web-crawling, web-scraper, web-scraping, webscraping
- Language: Python
- Homepage: https://www.omkar.cloud/bose/docs/niceties/temp-mail/
- Size: 15.6 KB
- Stars: 13
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS
Awesome Lists containing this project
README
![]()
✨ Omkar Temp Mail ✨
(Programming Language - Python 3)
![]()
---
Omkar Temporary Email offers a convenient solution for receiving temporary emails.
## Getting Started
To get started with Omkar Temp Mail install `omkar-temp-mail` using the following command:```bash
python -m pip install omkar-temp-mail
```## Usage
1. `get_domains`
Returns a list of available domain options for generating temporary email addresses.```python
from omkar_temp_mail import TempMaildomains = TempMail.get_domains()
print(domains) # prints ['1secmail.com', '1secmail.org', '1secmail.net', 'kzccv.com', 'qiott.com', 'wuuvo.com', 'icznn.com', 'ezztt.com']
```2. `get_email_link(email)`
Get's the first link from the most recent email message received in the given email address.
```python
from omkar_temp_mail import TempMailemail = "[email protected]"
link = TempMail.get_email_link(email)
print(link)
```3. `get_body(email)`
Get's the content (text or HTML) from the most recent email message received in the given email address.
```python
from omkar_temp_mail import TempMailemail = "[email protected]"
body = TempMail.get_body(email)
print(body)
```4. `deleteMailbox(email)`
Deletes the mailbox associated with the provided email address.
```python
from omkar_temp_mail import TempMailemail = "[email protected]"
TempMail.deleteMailbox(email)
```5. `get_email_link_and_delete_mailbox(email)`
Combines the functionality of `get_email_link` and `deleteMailbox(email)`. It first retrieves the first link from the most recent email and then deletes the mailbox, returning the link.
```python
from omkar_temp_mail import TempMailemail = "[email protected]"
link = TempMail.get_email_link_and_delete_mailbox(email)
print("Link:", link)
```## If my code helped you in generating Temporary Email, please take a moment to [star the repository](https://github.com/omkarcloud/omkar-temp-mail). Your act of starring will help developers in discovering our Repository and contribute towards helping fellow developers in their automation tasks. Dhanyawad 🙏! Vande Mataram!