I’ve been using Firebase for a while now with a mobile app, and for that reason, the one email template is configured for deep linking. I now need to add a web app to the same project and will need an action link for password reset without deep linking. The issue is that I cannot just edit the template whenever I want because it would break the released mobile app.
I handled email verification 100% manually using auth.updateUser
, but using the same technique for password reset feels extremely risky. Is there any other way to approach this? From what I’ve researched, it’s impossible to add more than one email template. But what about action links? Is the auth.updateUser
approach actually risky? Thanks.