UNPKG

@visulima/email

Version:

A comprehensive email library with multi-provider support, crypto utilities, and template engines

8 lines (7 loc) 285 B
/** * Validates an email address format according to basic RFC standards. * @param email The email address string to validate. * @returns True if the email address is valid, false otherwise. */ declare const validateEmail: (email: string) => boolean; export default validateEmail;