Home > other >  Can I use sendEmailVerification method for a passwordless purpose? (firebase, flutter)
Can I use sendEmailVerification method for a passwordless purpose? (firebase, flutter)

Time:07-26

I have a multipage (3 pages) account signup that contains

  1. Email verification (ONLY enter the email, click send button then verify)
  2. Choose the interest categories (if the email is verify)
  3. Enter the major and graduation year

I previously used a package that sends OTP to the email that is entered in the textfield and it is no longer supported. So now I am looking at sendEmailVerification that sends the verification link to the email. However, all the examples I have looked are having both email address AND password in their sign up page. Can I still use that method for my case (passwordlessly)? Please help.

CodePudding user response:

you can use Email-link-auth if you want an email-only login.

  • Related