
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
- Unable to add permission when creating a...
I am creating a collection from a cloud function using the Appwrite Dart server SDK, and I want to add permissions so it can be accessed by users. I added code ...
- email verification error??
Hey, I'm trying email verificacion with this signup implementation using deep links on iOS, but when creating the account I get this exception: Exception: Erro...
- Resource limit on the free plan
I'm currently building a health-focused tech project as part of a student initiative, and I’ve been using Appwrite extensively for backend services. As part o...
