Email Finder

Regex

Scan a page for email addresses in text content and HTML source, deduplicated and grouped by domain.

Scans both visible text and raw HTML — catches mailto: links and plain-text addresses alike.

Equivalent Python

from scrapper_tools import fetch
from scrapper_tools.utils import extract_emails

page = fetch("https://next.cubetiqs.com")
text = page.get_all_text(separator=" ", strip=True)
emails = extract_emails(text)
print(f"Found {len(emails)} emails:", emails)