feat: Add additional checks for website, NS records and personal emails
This commit is contained in:
@@ -12,8 +12,10 @@ export interface EmailVerificationResult {
|
||||
isAlias: boolean;
|
||||
isTypo: boolean;
|
||||
isPlusAddressed: boolean;
|
||||
domainExists: boolean;
|
||||
hasMxRecords: boolean;
|
||||
isPersonalEmail: boolean; // Email is from a personal/free provider (Gmail, Hotmail, etc.)
|
||||
domainExists: boolean; // Domain exists in DNS (has NS records)
|
||||
hasWebsite: boolean; // Domain has A/AAAA records (informational - not required for email)
|
||||
hasMxRecords: boolean; // Domain has MX records (required for receiving email)
|
||||
suggestedEmail?: string;
|
||||
reasons: string[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user