Skip to main content
function signInWithEmail(options: SignInWithEmailOptions): Promise<SignInWithEmailResult>;
Initiates the sign in flow with an email.

Parameters

ParameterTypeDescription
optionsSignInWithEmailOptionsThe options for the sign in.

Returns

Promise<SignInWithEmailResult> The result of the sign in.

Example

const result = await signInWithEmail({
  email: "user@example.com"
});
I