I’m pondering a user signup flow that goes like this:
Input Email => Send Magic Link => Onboard Additional Info (Name etc.)
My qusetion is if I send the user a Magic Link for initial login, will that trigger Bubble to update the User Email Verified to yes or do I need to figure a workflow for that separately?
I’m considering adding a generated email confirmation token in WF before magic link and then adding the code to the Send more parameters but I don’t want to create redundency unessarily.
In Bubble, the ‘email confirmed’ status can be updated by the following actions:
Send an email to confirm the email: When a user clicks the link in the confirmation email, their ‘email confirmed’ status is set to yes.
Send confirmation email: If an email was already confirmed, the user’s property ‘email confirmed’ is marked as unconfirmed until the user clicks the link in the new email.
Signup/login with a social network: If the user’s account has been linked to an OAuth provider (e.g., Google), the user’s property email confirmed will automatically be marked as confirmed.
So, once they input their email, you can send them the email confirmation mail that’ll redirect them to the Onboarding page
Let’s say I only want to create an ‘Admin’ user who creates accounts for people. I want those created accounts to recieve a ‘Magic Link’ email when the Admin user creates the account. From there I onboard the user to enter more information etc…
Will the Magic Link login update the ‘email confirmed’ status on this new user? Or will I have to generate another email with a link for them to confirm?