Skip to content

Quick temporary email adress for any purpose, 4 lines and ur email is verified on every site ;D

Notifications You must be signed in to change notification settings

alefazaxdd/fazamail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Faza Mail

Faza Mail is a Python library that provides a simple interface for generating temporary email addresses and checking emails for specific content.

Installation

Install Faza Mail using pip:

pip install fazamail

Quick Start

import fazamail

# Generate a temporary email address
address, token = fazamail.mail()

# Check email content
email_body = fazamail.check_mail(auth=token, url=1)
print(email_body)

# Check the first URL in the email
first_url = fazamail.check_mail(auth=token, url=2)
print("First URL in the email:", first_url)

# List all URLs in the email
all_urls = fazamail.check_mail(auth=token, url=3)
print("All URLs in the email:", all_urls)

Features

  • Email Generation: Quickly generate a temporary email address.
  • Email Checking: Check emails for specific content, extract the first URL, or list all URLs.

Usage

Generating a temporary Email

import fazamail

# Generate a temporary email address
address, token = fazamail.mail()

print("Temporary Email Address:", address)
print("Authentication Token:", token)

Checking Email Content

import fazamail

# Use the authentication token to check email content
email_body = fazamail.check_mail(auth=token, url=1)
print("Email Body:", email_body)

# Check the first URL in the email
first_url = fazamail.check_mail(auth=token, url=2)
print("First URL in the email:", first_url)

# List all URLs in the email
all_urls = fazamail.check_mail(auth=token, url=3)
print("All URLs in the email:", all_urls)

About

Quick temporary email adress for any purpose, 4 lines and ur email is verified on every site ;D

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages