
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
- mcp-for-docs not working properly
I'm experiencing issues integrating the MCP server tool with Cursor IDE. The MCP server connection establishes successfully initially but fails after one minute...
- When connecting to VCS (Version Control ...
Hello, when I try to define in my function the root path of a function I get this when I click "Update".
- queries.map is not a function
Query.createdBefore doesnt work ``` tables.updateRows({ databaseId: process.env.APPWRITE_DATABASE_ID, tableId: process.env.APPWRITE_TABLE_ID, ...
