UNPKG

@emailcheck/email-validator-js

Version:

Advanced email validation with MX records, SMTP verification, disposable email detection, batch processing, and caching. Production-ready with TypeScript support.

8 lines (7 loc) 274 B
import type { SmtpVerificationResult, VerifyMailboxSMTPParams } from './types'; export declare function verifyMailboxSMTP(params: VerifyMailboxSMTPParams): Promise<{ smtpResult: SmtpVerificationResult; cached: boolean; port: number; portCached: boolean; }>;