Building an app where users can update their email! To ensure security, I'm looking into the best way to verify the new email address. Any insights or best practices you guys can share?
Account:
const result = await account.updateEmail( 'email@example.com', // email 'password' // password );
Users:
const result = await users.updateEmail(
'<USER_ID>', // userId
'email@example.com' // email
);
I tried this function, but couldn't find the option for email verification using these function.
Need help with email updation after successful registration
Recommended threads
- OAuth login not working on deployed app ...
Hey there, I've been dealing with an issue where I cannot use OAuth on my deployed app - locally everything works fine. I am using react-router in Framework Mo...
- Bug on Updating User Limit
I’ve encountered a bug in the Appwrite Cloud UI when attempting to update the user limit to 0. My goal is to disable public registration while still allowing e...
- Failed to load data from database
My app broken, it throw AppwriteException exception. Few days ago it works well. AppwriteException: , ClientException with SocketException: Failed host lookup:...