Extract email addresses found on the page
List<String> extractEmails() { if (_htmlContent == null) { throw ScraperNotInitializedException(); } return SmartExtractor.extractEmails(_htmlContent!); }