Updates
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { HandleNodemailerParam } from "../../backend/handleNodemailer";
|
||||
type Param = {
|
||||
email?: string;
|
||||
welcomeEmailOptions?: HandleNodemailerParam;
|
||||
};
|
||||
export default function validateEmail({ email, welcomeEmailOptions, }: Param): Promise<{
|
||||
isValid: boolean;
|
||||
message?: string;
|
||||
}>;
|
||||
export {};
|
||||
@@ -0,0 +1 @@
|
||||
export default function emailMxLookup(email?: string, debug?: boolean): Promise<boolean>;
|
||||
@@ -0,0 +1 @@
|
||||
export default function emailRegexCheck(email: string): boolean;
|
||||
@@ -0,0 +1 @@
|
||||
export default function verifyEmailSMTP(email: string): Promise<boolean>;
|
||||
Reference in New Issue
Block a user