
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
- Sharing cookies
Hi, I’m using Appwrite Cloud, and I have a setup where my Appwrite backend is hosted on a subdomain (e.g., api.example.com), while my frontend (Next.js app) and...
- Custom Domain Issue
i have added a custom domain about 21 hours ago, but till now there is no SSL certificate is active on it. but if i do DNS check via https://dnschecker.org/#C...
- Flutter OAuth2 Google does not return to...
When the flow starts, the browser opens, I select an account, and it keeps showing: """ Page not found The page you're looking for doesn't exist. `general_rout...
