Hi team
I've created an Appwrite cloud function to send an email verification to a user. My understanding is that server-side code should use the Users API, but I'm unable to find the createVerification() method in its documentation. However, I've found that method in the Account API.
Could you please clarify my understanding and provide the correct code for sending a verification email from an Appwrite function?
it's common to make that call client-side. no need to do that server-side. You could use the function for handling the verification, though
Maybe not fully related to the verification but related to your answer, is there a rule on when it's okay/best to do it client-side VS server-side?
Additionally, if we are using SSR, how would that work? Can we make requests on behalf of an user? (aka instead of using the api key/admin client)
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Appwrite Storage error 503s for automate...
I'm facing error 503s from Appwrite after about 5-6 seconds of making AI requests from my tool with images and files above 20MB (=> not inline base64 used, but ...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...